]> git.sesse.net Git - vlc/commitdiff
Fix a compilation warning.
authorRémi Duraffort <ivoire@videolan.org>
Sat, 19 Jul 2008 10:48:17 +0000 (12:48 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Sat, 19 Jul 2008 10:48:17 +0000 (12:48 +0200)
modules/demux/rawvid.c

index ca6d8eb92861bdb641d542925fe81bf3ef239835..21bdb4fde15cdf5bf6dd3652459b95a4dfa230f9 100644 (file)
@@ -182,7 +182,8 @@ static int Open( vlc_object_t * p_this )
     {
         char *psz;
         char *buf;
-        int a, b = 1;
+        int a = 1;
+        int b = 1;
         psz = stream_ReadLine( p_demux->s );
 
         /* TODO: handle interlacing */