From: Paul Brossier Date: Thu, 22 Sep 2016 23:14:47 +0000 (+0200) Subject: src/notes/notes.c: fix error message X-Git-Tag: 0.4.4~197 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=790b6d7b756157a2d712dfa1ea93e46a672182a7;p=aubio.git src/notes/notes.c: fix error message --- diff --git a/src/notes/notes.c b/src/notes/notes.c index ac48fec4..79b2ffef 100644 --- a/src/notes/notes.c +++ b/src/notes/notes.c @@ -81,8 +81,7 @@ aubio_notes_t * new_aubio_notes (const char_t * method, o->pitch_output = new_fvec (1); if (strcmp(method, "default") != 0) { - AUBIO_ERR("unknown notes detection method %s, using default.\n", - method); + AUBIO_ERR("notes: unknown notes detection method \"%s\"\n", method); goto fail; } o->note_buffer = new_fvec(o->median);