]> git.pld-linux.org Git - packages/libdvdread.git/blame - libdvdread-alpha.patch
- added buffix patch (read buffer handling bugfix from libdvdread 0.9.7)
[packages/libdvdread.git] / libdvdread-alpha.patch
CommitLineData
ba547ed0
ŁK
1--- libdvdread-4.1.3/src/dvd_reader.c.orig 2008-10-12 00:15:30.820453108 +0200
2+++ libdvdread-4.1.3/src/dvd_reader.c 2008-10-12 00:16:08.323454328 +0200
b780941b
SS
3@@ -1151,7 +1151,7 @@
4 if( ( offset + block_count ) <= dvd_file->title_sizes[ i ] ) {
5 off = dvdinput_seek( dvd_file->title_devs[ i ], (int)offset );
6 if( off < 0 || off != (int)offset ) {
7- fprintf( stderr, "libdvdread: Can't seek to block %d\n",
8+ fprintf( stderr, "libdvdread: Can't seek to block %u\n",
9 offset );
10 return off < 0 ? off : 0;
11 }
12@@ -1166,7 +1166,7 @@
13 /* Read part 1 */
14 off = dvdinput_seek( dvd_file->title_devs[ i ], (int)offset );
15 if( off < 0 || off != (int)offset ) {
16- fprintf( stderr, "libdvdread: Can't seek to block %d\n",
17+ fprintf( stderr, "libdvdread: Can't seek to block %u\n",
18 offset );
19 return off < 0 ? off : 0;
20 }
This page took 0.086392 seconds and 4 git commands to generate.