ref: 69bc17142fe12970db05d79150206e227325558f
parent: 1b6a62deb6137e96437f0eb9924aac93006719b3
author: Paul Brossier <piem@piem.org>
date: Sun Aug 24 02:51:51 EDT 2014
src/io/source_wavread.c: sync error message
--- a/src/io/source_wavread.c
+++ b/src/io/source_wavread.c
@@ -92,7 +92,7 @@
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;
}