From: Paul Brossier Date: Mon, 3 Oct 2016 19:09:52 +0000 (+0200) Subject: src/io/source.c: only show error message from last child source_ X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=cb1fad8db6d4820ac3bf68a7b985bc99aa306778;p=aubio.git src/io/source.c: only show error message from last child source_ --- diff --git a/src/io/source.c b/src/io/source.c index 246eb908..3862d71a 100644 --- a/src/io/source.c +++ b/src/io/source.c @@ -115,8 +115,8 @@ aubio_source_t * new_aubio_source(const char_t * uri, uint_t samplerate, uint_t return s; } #endif /* HAVE_WAVREAD */ - AUBIO_ERROR("source: failed creating aubio source with %s" - " at samplerate %d with hop_size %d\n", uri, samplerate, hop_size); + //AUBIO_ERROR("source: failed creating aubio source with %s" + // " at samplerate %d with hop_size %d\n", uri, samplerate, hop_size); AUBIO_FREE(s); return NULL; }