shithub: aubio

Download patch

ref: 790b6d7b756157a2d712dfa1ea93e46a672182a7
parent: 9bfef7183f17495903403f21602ad2af6616062b
author: Paul Brossier <piem@piem.org>
date: Thu Sep 22 21:14:47 EDT 2016

src/notes/notes.c: fix error message

--- a/src/notes/notes.c
+++ b/src/notes/notes.c
@@ -81,8 +81,7 @@
   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);