Skip to content
Snippets Groups Projects
Commit aeb23fc4 authored by Luca Barbato's avatar Luca Barbato Committed by Vittorio Giovara
Browse files

avprobe: Remove a pointless check

The element is always valid.

CC: libav-stable@libav.org
Bug-Id: CID 732276
parent e58a140c
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ static void ini_print_object_header(const char *name)
}
avio_printf(probe_out, "%s", name);
if (el && el->type == ARRAY)
if (el->type == ARRAY)
avio_printf(probe_out, ".%"PRId64"", el->nb_elems);
avio_printf(probe_out, "]\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment