diff options
author | Martin Storsjö <martin@martin.st> | 2009-09-15 13:09:34 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-09-15 13:09:34 +0000 |
commit | ff19d438dc6950a4fd6e1004b331c1aca4236c58 (patch) | |
tree | d79874f5bb7ef8acee932d42d32cd207a2f2c649 /tools | |
parent | c4674a479bccdaa7071ef77baf21040909a97def (diff) | |
download | ffmpeg-streaming-ff19d438dc6950a4fd6e1004b331c1aca4236c58.zip ffmpeg-streaming-ff19d438dc6950a4fd6e1004b331c1aca4236c58.tar.gz |
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')
-rw-r--r-- | tools/probetest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/probetest.c b/tools/probetest.c index a49bb41..8ff77a4 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) { |