Commit d7676025 authored by diego's avatar diego

Remove unused variable, fixes warning:

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10858 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 178b59ab
...@@ -2539,7 +2539,7 @@ void dump_format(AVFormatContext *ic, ...@@ -2539,7 +2539,7 @@ void dump_format(AVFormatContext *ic,
const char *url, const char *url,
int is_output) int is_output)
{ {
int i, flags; int i;
av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n", av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n",
is_output ? "Output" : "Input", 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