From d817b57d36795b22dc493ef66e3ed14a583cae49 Mon Sep 17 00:00:00 2001 From: Josh de Kock Date: Wed, 29 Apr 2020 11:45:49 +0100 Subject: [PATCH] tools: fix const specifier for AVInputFormat Signed-off-by: Josh de Kock --- tools/probetest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/probetest.c b/tools/probetest.c index cfa309cabd..6f0e002b74 100644 --- a/tools/probetest.c +++ b/tools/probetest.c @@ -66,7 +66,7 @@ static void probe(AVProbeData *pd, int type, int p, int size) static void print_times(void) { int i = 0; - AVInputFormat *fmt = NULL; + const AVInputFormat *fmt = NULL; void *fmt_opaque = NULL; while ((fmt = av_demuxer_iterate(&fmt_opaque))) {