From e109e392ba8658ba09895659c7a381187f14e3dc Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Wed, 16 May 2012 13:20:21 +0200 Subject: ffprobe: remove unused variable i in probe_file() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix warning: ffprobe.c: In function ‘probe_file’: ffprobe.c:1576:14: warning: unused variable ‘i’ [-Wunused-variable] --- ffprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffprobe.c') 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; -- cgit v1.2.3