shithub: aubio

Download patch

ref: 986c04cc23d6310d5da15e8f5767232a4571abde
parent: 799e05b0de8d92696dd492afbc758daf8bd32603
author: Paul Brossier <piem@piem.org>
date: Fri Mar 17 14:26:50 EDT 2017

src/effects/rubberband_utils.c: use ':' to join options

--- a/src/effects/rubberband_utils.c
+++ b/src/effects/rubberband_utils.c
@@ -87,7 +87,7 @@
   } 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;