diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-06-23 08:52:44 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-06-23 08:52:44 +0000 |
commit | 07cb073bf9116fc71a28597afebbe4e0bbb48883 (patch) | |
tree | 694fb665b4dbea41542bd2db474f51ab0eee1d4f | |
parent | ace21da3cf7b396df5702b3bf46f758156a0cb8f (diff) | |
download | ffmpeg-07cb073bf9116fc71a28597afebbe4e0bbb48883.tar.gz |
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
-rw-r--r-- | libavformat/rmdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 502b1f4e22..aa8bda7e3c 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -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; |