summaryrefslogtreecommitdiff
path: root/tools/probetest.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2009-09-15 13:09:34 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-09-15 13:09:34 +0000
commitff19d438dc6950a4fd6e1004b331c1aca4236c58 (patch)
treed79874f5bb7ef8acee932d42d32cd207a2f2c649 /tools/probetest.c
parentc4674a479bccdaa7071ef77baf21040909a97def (diff)
Init i to 0 (10l fix).
Patch by Martin Storsjö / martin von martin aus st Originally committed as revision 19855 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tools/probetest.c')
-rw-r--r--tools/probetest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/probetest.c b/tools/probetest.c
index a49bb41454..8ff77a45fb 100644
--- 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) {