From: Paul Brossier Date: Wed, 13 Nov 2013 00:21:30 +0000 (+0100) Subject: tests/src/io/test-source_seek.c: initialize variables X-Git-Tag: 0.4.0-beta1~100 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=54e74f0c2fdd60f10ccd1d321f92e491f898fee0;p=aubio.git tests/src/io/test-source_seek.c: initialize variables --- diff --git a/tests/src/io/test-source_seek.c b/tests/src/io/test-source_seek.c index 5b7a7f7a..ad8d1772 100644 --- a/tests/src/io/test-source_seek.c +++ b/tests/src/io/test-source_seek.c @@ -22,7 +22,7 @@ int main (int argc, char **argv) uint_t samplerate = 0; uint_t hop_size = 256; uint_t n_frames = 0, read = 0; - uint_t old_n_frames_1, old_n_frames_2, old_n_frames_3; + uint_t old_n_frames_1 = 0, old_n_frames_2 = 0, old_n_frames_3 = 0; if ( argc == 3 ) samplerate = atoi(argv[2]); if ( argc == 4 ) hop_size = atoi(argv[3]);