Commit 87218163 authored by michael's avatar michael

Init i to 0 (10l fix).

Patch by Martin Storsjö / martin von martin aus st


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19855 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0bf2ab2a
...@@ -29,7 +29,7 @@ static int failures=0; ...@@ -29,7 +29,7 @@ static int failures=0;
static void probe(AVProbeData *pd, int type, int p, int size) static void probe(AVProbeData *pd, int type, int p, int size)
{ {
int i; int i = 0;
AVInputFormat *fmt; AVInputFormat *fmt;
for(fmt = first_iformat; fmt != NULL; fmt = fmt->next) { for(fmt = first_iformat; fmt != NULL; fmt = fmt->next) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment