From: Paul Brossier Date: Fri, 17 Mar 2017 17:26:50 +0000 (+0100) Subject: src/effects/rubberband_utils.c: use ':' to join options X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=389f903bf5c30b132fd464aaa1256e8f1f51ae70;p=aubio.git src/effects/rubberband_utils.c: use ':' to join options --- diff --git a/src/effects/rubberband_utils.c b/src/effects/rubberband_utils.c index d8d039e3..0161ec95 100644 --- a/src/effects/rubberband_utils.c +++ b/src/effects/rubberband_utils.c @@ -87,7 +87,7 @@ RubberBandOptions aubio_get_rubberband_opts(const char_t *mode) } else { // attempt to parse a list of options, separated with ',' char *modecopy = strndup(mode, PATH_MAX); - char **params = aubio_split_str(modecopy, ','); + char **params = aubio_split_str(modecopy, ':'); uint_t i; if (!params) { return -1;