From: Diego Biurrun Date: Tue, 15 Dec 2009 23:41:22 +0000 (+0000) Subject: Remove unused variable, fixes the warning: X-Git-Tag: v0.6~2301 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18a49f118cd288cf510d003e0716a042f7cba2b0;p=platform%2Fupstream%2Flibav.git Remove unused variable, fixes the warning: libavformat/apetag.c:38: warning: unused variable `l' Originally committed as revision 20878 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/apetag.c b/libavformat/apetag.c index bc91507..6b46767 100644 --- a/libavformat/apetag.c +++ b/libavformat/apetag.c @@ -35,7 +35,7 @@ static int ape_tag_read_field(AVFormatContext *s) ByteIOContext *pb = s->pb; uint8_t key[1024], *value; uint32_t size, flags; - int i, l, c; + int i, c; size = get_le32(pb); /* field size */ flags = get_le32(pb); /* field flags */