src/io/sink.c: improve error message
authorPaul Brossier <piem@piem.org>
Sun, 10 Feb 2013 20:06:03 +0000 (15:06 -0500)
committerPaul Brossier <piem@piem.org>
Sun, 10 Feb 2013 20:06:03 +0000 (15:06 -0500)
src/io/sink.c

index f3d6e36..5a48622 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 creating aubio sink with %s", uri);
+  AUBIO_ERROR("failed creating aubio sink with %s\n", uri);
   AUBIO_FREE(s);
   return NULL;
 }