diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-10-14 16:46:42 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-10-17 09:55:46 +0100 |
commit | aeb23fc4549a25ef32ff085d2a76227f90caf403 (patch) | |
tree | 064f665e32672dc4943fe40d1290235f18f3e7e4 /avprobe.c | |
parent | e58a140cf91d1a9cdfa3115d73c923dab0e9e7dc (diff) | |
download | ffmpeg-aeb23fc4549a25ef32ff085d2a76227f90caf403.tar.gz |
avprobe: Remove a pointless check
The element is always valid.
CC: libav-stable@libav.org
Bug-Id: CID 732276
Diffstat (limited to 'avprobe.c')
-rw-r--r-- | avprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); } |