From: RĂ©mi Duraffort Date: Sat, 19 Jul 2008 10:48:17 +0000 (+0200) Subject: Fix a compilation warning. X-Git-Tag: 0.9.0-test3~376 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=3921a7f87de03160ecd18bcfeb68fbac459f2094;p=vlc Fix a compilation warning. --- diff --git a/modules/demux/rawvid.c b/modules/demux/rawvid.c index ca6d8eb928..21bdb4fde1 100644 --- a/modules/demux/rawvid.c +++ b/modules/demux/rawvid.c @@ -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 */