From: Paul Brossier Date: Fri, 10 Mar 2017 18:56:32 +0000 (+0100) Subject: src/onset/onset.c: warning, not error, for python not to raise an error X-Git-Tag: 0.4.5~20^2~33 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=b75f8902da21dec3c60db9fc1eda9437b39d7a48;p=aubio.git src/onset/onset.c: warning, not error, for python not to raise an error --- diff --git a/src/onset/onset.c b/src/onset/onset.c index ea9c01c0..d29c8440 100644 --- a/src/onset/onset.c +++ b/src/onset/onset.c @@ -279,7 +279,7 @@ void aubio_onset_default_parameters (aubio_onset_t * o, const char_t * onset_mod aubio_onset_set_threshold (o, 0.4); } else if (strcmp (onset_mode, "specdiff") == 0) { } else { - AUBIO_ERR ("onset: unknown spectral descriptor type %s, " + AUBIO_WRN("onset: unknown spectral descriptor type %s, " "using default parameters.\n", onset_mode); } }