diff --git a/libs/rubberband/src/main.cpp b/libs/rubberband/src/main.cpp index f6c1a3d69f..4aef2338c5 100644 --- a/libs/rubberband/src/main.cpp +++ b/libs/rubberband/src/main.cpp @@ -43,7 +43,7 @@ using RubberBand::usleep; double tempo_convert(const char *str) { - char *d = strchr((char *)str, ':'); + const char *d = strchr((char *)str, ':'); if (!d || !*d) { double m = atof(str);