Merge branch 'fix/crash_filterbank' (thanks to @niugx)
authorPaul Brossier <piem@piem.org>
Mon, 26 Nov 2018 10:34:01 +0000 (11:34 +0100)
committerPaul Brossier <piem@piem.org>
Mon, 26 Nov 2018 10:34:01 +0000 (11:34 +0100)
VERSION
src/spectral/specdesc.c

diff --git a/VERSION b/VERSION
index bb0e8ed..9f55233 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1,7 +1,7 @@
 AUBIO_MAJOR_VERSION=0
 AUBIO_MINOR_VERSION=4
-AUBIO_PATCH_VERSION=8
-AUBIO_VERSION_STATUS=''
+AUBIO_PATCH_VERSION=9
+AUBIO_VERSION_STATUS='~alpha'
 LIBAUBIO_LT_CUR=5
 LIBAUBIO_LT_REV=4
 LIBAUBIO_LT_AGE=8
index eee3787..cc1665a 100644 (file)
@@ -296,7 +296,8 @@ new_aubio_specdesc (const char_t * onset_mode, uint_t size){
   else if (strcmp (onset_mode, "default") == 0)
       onset_type = aubio_onset_default;
   else {
-      AUBIO_ERR("unknown spectral descriptor type %s\n", onset_mode);
+      AUBIO_ERR("specdesc: unknown spectral descriptor type '%s'\n",
+          onset_mode);
       AUBIO_FREE(o);
       return NULL;
   }