From 65525fe1204b6f5062c18274a408874258e32cd1 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 15 Jul 2012 18:47:23 -0600 Subject: [PATCH] src/io/sink.c: improve error message --- src/io/sink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0