- May 03, 2022
-
-
wdlkmpx authored
gcc 11 warnings https://pastebin.com/20LCg2be
-
- Mar 28, 2022
-
-
Barak A. Pearlmutter authored
-
- Nov 18, 2020
-
-
Javantea authored
-
- Jun 22, 2020
-
-
Barak A. Pearlmutter authored
-
- Apr 02, 2020
-
-
David E. Nedrow authored
-
- Feb 14, 2020
-
-
rxxrc authored
-
- Feb 13, 2020
-
-
Barak A. Pearlmutter authored
-
rxxrc authored
Only print a progress bar if the terminal is wide enough to fit it, otherwise just print the raw percentage and ETA numbers. Also, account for the fact that the '|' is printed even if the current progress is zero, meaning we should always subtract at least one from the number of space characters following it.
-
rxxrc authored
When calculating the dimensions of the progress bar, some integer divisions can give zero results, which in turn causes divide-by-zeroes to occur. This occurrs when: 1. the terminal width is exactly 16 columns, which causes `barLen` to be calculated as zero. 2. the `tot` input filesize is less than the calculated value of `barLen`. These are both fixed by replacing two divisions with one division and one multi- plication.
-
- Jan 26, 2018
-
-
Barak A. Pearlmutter authored
-
- Jan 25, 2018
-
-
bastif authored
The -b <seek_start> and -e <stop_before_end> options didn't work when used in conjunction with -O <vob_file_to_extract.vob>. The relevant use case is extracting part of a VOB file from the dvd, even if it is not in the main title. See https://bugs.debian.org/867388 Gbp-Pq: Name 0018-fix-options-b-and-e-with-O.patch
-
bastif authored
Sometimes, the files of the ISO when mounted with fuseiso have a trailing ";?". Depending on the way fuseiso mounted the ISO (-c <charset>) option the question mark '?' may be different, especially when mounted on with utf-8. Better detected and manage this case. See https://bugs.debian.org/867388 Gbp-Pq: Name 0017-trailing-colon-question-mark.patch
-
bastif authored
When specifying a directory that is the mountpoint of a iso mounted with fuseiso, vobcopy wasn't able to find the location of the iso and therefore was unusable in that case (it thinks the name of the iso is fuseiso). See https://bugs.debian.org/867388 Gbp-Pq: Name 0016-fuseiso-mount.patch
-
Barak A. Pearlmutter authored
Thanks to Fab Stz <fabstz-it@yahoo.fr>. See https://bugs.debian.org/867388
-
- May 08, 2016
-
-
Ronald van Rij authored
Copying a small chapter or if the terminal window is too small, printing the progress bar results in a divide by zero.
-
- Nov 26, 2015
-
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
-
- May 13, 2015
-
-
Barak A. Pearlmutter authored
$ clang -DHAVE_CONFIG_H -I. -g -O2 -Wall -c vobcopy.c ln vobcopy.1.de intl/de/vobcopy.1 vobcopy.c:240:24: warning: taking the absolute value of unsigned type 'unsigned long long' has no effect [-Wabsolute-value] seek_start = abs( temp_var / 2048 ); ^ vobcopy.c:240:24: note: remove the call to 'abs' since unsigned values cannot be negative seek_start = abs( temp_var / 2048 ); ^~~ vobcopy.c:241:26: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare] if( seek_start < 0 ) ~~~~~~~~~~ ^ ~ vobcopy.c:293:29: warning: taking the absolute value of unsigned type 'unsigned long long' has no effect [-Wabsolute-value] stop_before_end = abs( temp_var / 2048 ); ^ vobcopy.c:293:29: note: remove the call to 'abs' since unsigned values cannot be negative stop_before_end = abs( temp_var / 2048 ); ^~~ vobcopy.c:294:31: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare] if( stop_before_end < 0 ) ~~~~~~~~~~~~~~~ ^ ~
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
Fix the autotool-ification to work on kfreebsd, per http://bugs.debian.org/697016 by accepting the patch therein. Thanks to: Petr Salinger <Petr.Salinger@seznam.cz>
-
Barak A. Pearlmutter authored
remove system-specific guards in favour of feature tests. test for getopt_long. test for fdatasync. test for statfs and friends. remove gettext.h.
-
Barak A. Pearlmutter authored
engage autoconf autoheader mechanisms for gettext internationalization remove '\r' from internationalized strings remove vobcopy.pot as po/vobcopy.pot is generated by autoreconf put m4 macros in m4/ subdir
-
Barak A. Pearlmutter authored
engage autoheader, and let it deal with largefile issues
-
Barak A. Pearlmutter authored
Switch build system to use autotools (add autotools scripts; rm Makefile configure.sh) centralise version number in configure.ac
-
Barak A. Pearlmutter authored
silence lintian warning about hyphens vs dashes in German man page
-
Barak A. Pearlmutter authored
silence lintian warning about hyphens vs dashes in English man page
-
Barak A. Pearlmutter authored
quash gcc pointer type warning, passing **dvd_reader_t to routine that expects *dvd_reader_t
-
Svante Signell authored
Solves failure to build from sources on Debian GNU/Hurd, see http://bugs.debian.org/641283 for details.
-
- Jan 01, 2012
-
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
-
Barak A. Pearlmutter authored
-