summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-05-16 13:20:21 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-05-16 13:20:21 +0200
commite109e392ba8658ba09895659c7a381187f14e3dc (patch)
tree5950320a4e806290c97aa40b39dd16fccb110251 /ffprobe.c
parent4d4098da009c8340997b8d1abedbf2062e4aa991 (diff)
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]
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 5009d58f14..d53ec11624 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -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;