Commit 07cb073b authored by Diego Biurrun's avatar Diego Biurrun

Remove unused variable, fixes the warning:

libavformat/rmdec.c:280: warning: unused variable 'i'

Originally committed as revision 13909 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ace21da3
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment