mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 07:40:00 +08:00
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:
@ -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",
|
||||
|
Reference in New Issue
Block a user