From 790b6d7b756157a2d712dfa1ea93e46a672182a7 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 23 Sep 2016 01:14:47 +0200 Subject: [PATCH] src/notes/notes.c: fix error message --- src/notes/notes.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); -- 2.11.0