From 69bc17142fe12970db05d79150206e227325558f Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 24 Aug 2014 06:51:51 -0500 Subject: [PATCH] src/io/source_wavread.c: sync error message --- src/io/source_wavread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0