From: Paul Brossier Date: Wed, 21 Sep 2016 16:02:44 +0000 (+0200) Subject: src/effects/pitchshift_rubberband.c: fix error message X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=3ffedf225ec8309798271fee2ed2a18730fdda76;p=aubio.git src/effects/pitchshift_rubberband.c: fix error message --- diff --git a/src/effects/pitchshift_rubberband.c b/src/effects/pitchshift_rubberband.c index cda63dcd..8e86bf09 100644 --- a/src/effects/pitchshift_rubberband.c +++ b/src/effects/pitchshift_rubberband.c @@ -58,7 +58,7 @@ new_aubio_pitchshift (const char_t * mode, p->rboptions = aubio_get_rubberband_opts(mode); if (p->rboptions < 0) { - AUBIO_ERR("timestretch: unknown pitch shifting method %s\n", mode); + AUBIO_ERR("pitchshift: unknown pitch shifting method %s\n", mode); goto beach; } //AUBIO_MSG("pitchshift: using pitch shifting method %s\n", mode);