Commit 1ef458a4 authored by diego's avatar diego

Remove unused variable, fixes the warning:

libavformat/apetag.c:38: warning: unused variable `l'


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20878 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 02d0376d
......@@ -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 */
......
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