Commit 63bb42fb authored by Diego Biurrun's avatar Diego Biurrun

Remove unused variable, fixes warning:

utils.c: In function 'dump_format':
utils.c:2542: warning: unused variable 'flags'

Originally committed as revision 10858 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 44626387
......@@ -2539,7 +2539,7 @@ void dump_format(AVFormatContext *ic,
const char *url,
int is_output)
{
int i, flags;
int i;
av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n",
is_output ? "Output" : "Input",
......
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