diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-25 10:11:15 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-25 10:11:15 +0000 |
commit | 63bb42fb36aca782136ce4a23d29ca6320d31c88 (patch) | |
tree | 2c3c681163f5aa3f6fe9ab9cff71a948db4f1fef /libavformat/utils.c | |
parent | 446263879b96f03cffe486e97b14b4e28a61f6ab (diff) | |
download | ffmpeg-63bb42fb36aca782136ce4a23d29ca6320d31c88.tar.gz |
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
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index fe967cbc84..a7a686e52a 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -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", |