summaryrefslogtreecommitdiff
path: root/libs/rubberband
diff options
context:
space:
mode:
authorJulien de Kozak <jdekozak@hotmail.com>2013-03-23 14:33:20 +0100
committerJulien de Kozak <jdekozak@hotmail.com>2013-03-23 14:50:58 +0100
commit16f8fc06578dac939e9d26af2f016a2d42405d7a (patch)
tree0c3e0f7886eafcf3d9fcb271f0cf8773ee4e29cb /libs/rubberband
parent268553ecd471e31d0a1a3976f02389260130e41d (diff)
Fix some compilation warnings
Diffstat (limited to 'libs/rubberband')
-rw-r--r--libs/rubberband/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/rubberband/src/main.cpp b/libs/rubberband/src/main.cpp
index 4aef2338c5..1c80696180 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)
{
- const char *d = strchr((char *)str, ':');
+ const char *d = strchr(str, ':');
if (!d || !*d) {
double m = atof(str);