From: Paul Brossier Date: Mon, 16 Jul 2012 00:47:23 +0000 (-0600) Subject: src/io/sink.c: improve error message X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=65525fe1204b6f5062c18274a408874258e32cd1;p=aubio.git src/io/sink.c: improve error message --- diff --git a/src/io/sink.c b/src/io/sink.c index 570f6742..f3d6e368 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 opening %s", uri); + AUBIO_ERROR("failed creating aubio sink with %s", uri); AUBIO_FREE(s); return NULL; }