src/notes/notes.c: fix error message
authorPaul Brossier <piem@piem.org>
Thu, 22 Sep 2016 23:14:47 +0000 (01:14 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 22 Sep 2016 23:14:47 +0000 (01:14 +0200)
src/notes/notes.c

index ac48fec..79b2ffe 100644 (file)
@@ -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);