diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-05-16 13:20:21 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-05-16 13:20:21 +0200 |
commit | e109e392ba8658ba09895659c7a381187f14e3dc (patch) | |
tree | 5950320a4e806290c97aa40b39dd16fccb110251 | |
parent | 4d4098da009c8340997b8d1abedbf2062e4aa991 (diff) | |
download | ffmpeg-e109e392ba8658ba09895659c7a381187f14e3dc.tar.gz |
ffprobe: remove unused variable i in probe_file()
Fix warning:
ffprobe.c: In function ‘probe_file’:
ffprobe.c:1576:14: warning: unused variable ‘i’ [-Wunused-variable]
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1573,7 +1573,7 @@ static void close_input_file(AVFormatContext **ctx_ptr) static int probe_file(WriterContext *wctx, const char *filename) { AVFormatContext *fmt_ctx; - int ret, i; + int ret; do_read_frames = do_show_frames || do_count_frames; do_read_packets = do_show_packets || do_count_packets; |