git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Init i to 0 (10l fix).
[ffmpeg.git]
/
tools
/
probetest.c
diff --git
a/tools/probetest.c
b/tools/probetest.c
index
a49bb41
..
8ff77a4
100644
(file)
--- a/
tools/probetest.c
+++ b/
tools/probetest.c
@@
-29,7
+29,7
@@
static int failures=0;
static void probe(AVProbeData *pd, int type, int p, int size)
{
- int i;
+ int i
= 0
;
AVInputFormat *fmt;
for(fmt = first_iformat; fmt != NULL; fmt = fmt->next) {