From: Steven Liu Date: Thu, 25 Aug 2016 12:40:17 +0000 (-0700) Subject: tests/audiomatch: Fix compile warning X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=500662784341373d625af629cad94826beca3bc8;p=ffmpeg tests/audiomatch: Fix compile warning Making sure bestpos is initialized to zero to prevent gcc from kvetching. It's harmless (although it's not obvious that it's harmless) from code inspection: tests/audiomatch.c: In function ‘main’: tests/audiomatch.c:40: warning: ‘bestpos’ may be used uninitialized in this function Thanks to Moritz Barsnick for first bringing this to the attention. Signed-off-by: LiuQi Signed-off-by: Michael Niedermayer --- diff --git a/tests/audiomatch.c b/tests/audiomatch.c index 9752f6819dd..ca56df09b30 100644 --- a/tests/audiomatch.c +++ b/tests/audiomatch.c @@ -37,7 +37,7 @@ int main(int argc, char **argv){ FILE *f[2]; int i, pos; int siglen, datlen; - int bestpos; + int bestpos = 0; double bestc=0; double sigamp= 0; int16_t *signal, *data;