From: Paul Brossier Date: Sun, 10 Feb 2013 20:06:03 +0000 (-0500) Subject: src/io/sink.c: improve error message X-Git-Tag: 0.4.0-beta1~335^2~5 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=6e3fed86eb24685a2ffacd458971d73933b74bcc;p=aubio.git src/io/sink.c: improve error message --- diff --git a/src/io/sink.c b/src/io/sink.c index f3d6e368..5a486222 100644 --- a/src/io/sink.c +++ b/src/io/sink.c @@ -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; }