Commit e109e392 authored by Stefano Sabatini's avatar Stefano Sabatini

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]
parent 4d4098da
...@@ -1573,7 +1573,7 @@ static void close_input_file(AVFormatContext **ctx_ptr) ...@@ -1573,7 +1573,7 @@ static void close_input_file(AVFormatContext **ctx_ptr)
static int probe_file(WriterContext *wctx, const char *filename) static int probe_file(WriterContext *wctx, const char *filename)
{ {
AVFormatContext *fmt_ctx; AVFormatContext *fmt_ctx;
int ret, i; int ret;
do_read_frames = do_show_frames || do_count_frames; do_read_frames = do_show_frames || do_count_frames;
do_read_packets = do_show_packets || do_count_packets; do_read_packets = do_show_packets || do_count_packets;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment