forked from FFmpeg/FFmpeg
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
This commit is contained in:
parent
446263879b
commit
63bb42fb36
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue