Dash:
[t2-trunk.git] / package / multimedia / vobcopy / 02-pointer-type.patch
blobf001f0eaf919857c31d8777644073ef63056bdb0
1 From: "Barak A. Pearlmutter" <bap@debian.org>
2 Date: Sun, 1 Jan 2012 18:20:23 +0100
3 Subject: pointer type
5 quash gcc pointer type warning,
6 passing **dvd_reader_t to routine that expects *dvd_reader_t
7 ---
8 vobcopy.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
11 diff --git a/vobcopy.c b/vobcopy.c
12 index d6e8ffc..95c3fea 100644
13 --- a/vobcopy.c
14 +++ b/vobcopy.c
15 @@ -773,7 +773,7 @@ and potentially fatal." - Thanks Leigh!*/
17 if( longest_title_flag ) /*no title specified (-n ) */
19 - titleid = get_longest_title( &dvd );
20 + titleid = get_longest_title( dvd );
21 fprintf( stderr, _("[Info] longest title %d.\n"), titleid );