src/effects/rubberband_utils.c: use ':' to join options
authorPaul Brossier <piem@piem.org>
Fri, 17 Mar 2017 17:26:50 +0000 (18:26 +0100)
committerPaul Brossier <piem@piem.org>
Fri, 17 Mar 2017 17:26:50 +0000 (18:26 +0100)
src/effects/rubberband_utils.c

index d8d039e..0161ec9 100644 (file)
@@ -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;