Browse Source

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
tags/v0.6
Martin Storsjö Michael Niedermayer 16 years ago
parent
commit
ff19d438dc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tools/probetest.c

+ 1
- 1
tools/probetest.c View File

@@ -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) {


Loading…
Cancel
Save