From: Paul Brossier Date: Sun, 24 Aug 2014 11:51:51 +0000 (-0500) Subject: src/io/source_wavread.c: sync error message X-Git-Tag: 0.4.2~68 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=69bc17142fe12970db05d79150206e227325558f;p=aubio.git src/io/source_wavread.c: sync error message --- diff --git a/src/io/source_wavread.c b/src/io/source_wavread.c index c8919080..bd3556c9 100644 --- a/src/io/source_wavread.c +++ b/src/io/source_wavread.c @@ -92,7 +92,7 @@ aubio_source_wavread_t * new_aubio_source_wavread(char_t * path, uint_t samplera s->fid = fopen((const char *)path, "rb"); if (!s->fid) { - AUBIO_ERR("source_wavread: could not open %s (%s)\n", s->path, strerror(errno)); + AUBIO_ERR("source_wavread: Failed opening %s (System error: %s)\n", s->path, strerror(errno)); goto beach; }