src/io/sink.c: improve error message
authorPaul Brossier <piem@piem.org>
Mon, 16 Jul 2012 00:47:23 +0000 (18:47 -0600)
committerPaul Brossier <piem@piem.org>
Mon, 16 Jul 2012 00:47:23 +0000 (18:47 -0600)
src/io/sink.c

index 570f674..f3d6e36 100644 (file)
@@ -44,7 +44,7 @@ aubio_sink_t * new_aubio_sink(char_t * uri, uint_t samplerate) {
   if (s->sink) return s;
 #endif /* HAVE_SNDFILE */
 #endif /* __APPLE__ */
-  AUBIO_ERROR("failed opening %s", uri);
+  AUBIO_ERROR("failed creating aubio sink with %s", uri);
   AUBIO_FREE(s);
   return NULL;
 }