From 07cb073bf9116fc71a28597afebbe4e0bbb48883 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 23 Jun 2008 08:52:44 +0000 Subject: [PATCH] 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 --- libavformat/rmdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 502b1f4..aa8bda7 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; -- 2.7.4