summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-01-21 19:42:14 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2013-01-21 19:42:14 +0000
commitc8cc2d1dd6a7b61d10b183fc7f3abdf596452154 (patch)
treeff5a0c5ab050471a87a63633e35570bd2ec4598d /libs
parent9d6c5d8c11a9aef8d33a3f32459783f9cfb55e2f (diff)
tweak for const correctness on apple
git-svn-id: svn://localhost/ardour2/branches/3.0@13955 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-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 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);