From bc6b2aff406402b398a6ee959027150df5f746d6 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 31 Jan 2015 12:21:40 +0100 Subject: [PATCH] src/io/source_wavread.c: avoid orphan parenthesis --- src/io/source_wavread.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/io/source_wavread.c b/src/io/source_wavread.c index e01847f8..ff3d3905 100644 --- a/src/io/source_wavread.c +++ b/src/io/source_wavread.c @@ -219,10 +219,11 @@ aubio_source_wavread_t * new_aubio_source_wavread(char_t * path, uint_t samplera if ( bytes_read != bytes_expected ) { #ifndef HAVE_WIN_HACKS AUBIO_ERR("source_wavread: short read (%zd instead of %zd) in %s\n", + bytes_read, bytes_expected, s->path); #else // mingw does not know about %zd... AUBIO_ERR("source_wavread: short read (%d instead of %d) in %s\n", -#endif bytes_read, bytes_expected, s->path); +#endif goto beach; } s->seek_start = bytes_read; -- 2.11.0