From: Paul Brossier Date: Sat, 31 Jan 2015 11:21:40 +0000 (+0100) Subject: src/io/source_wavread.c: avoid orphan parenthesis X-Git-Tag: 0.4.2~42 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=bc6b2aff406402b398a6ee959027150df5f746d6;p=aubio.git src/io/source_wavread.c: avoid orphan parenthesis --- 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;