Remove unused variable, fixes the warning:
authorDiego Biurrun <diego@biurrun.de>
Mon, 23 Jun 2008 08:52:44 +0000 (08:52 +0000)
committerDiego Biurrun <diego@biurrun.de>
Mon, 23 Jun 2008 08:52:44 +0000 (08:52 +0000)
libavformat/rmdec.c:280: warning: unused variable 'i'

Originally committed as revision 13909 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rmdec.c

index 502b1f4..aa8bda7 100644 (file)
@@ -277,7 +277,7 @@ static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap)
     AVStream *st;
     ByteIOContext *pb = s->pb;
     unsigned int tag;
-    int tag_size, i;
+    int tag_size;
     unsigned int start_time, duration;
     char buf[128];
     int flags = 0;