src/io/source_wavread.c: sync error message
authorPaul Brossier <piem@piem.org>
Sun, 24 Aug 2014 11:51:51 +0000 (06:51 -0500)
committerPaul Brossier <piem@piem.org>
Sun, 24 Aug 2014 11:51:51 +0000 (06:51 -0500)
src/io/source_wavread.c

index c891908..bd3556c 100644 (file)
@@ -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) {
 
   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;
   }
 
     goto beach;
   }