13
0

tweak for const correctness on apple

git-svn-id: svn://localhost/ardour2/branches/3.0@13955 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2013-01-21 19:42:14 +00:00
parent 9d6c5d8c11
commit c8cc2d1dd6

View File

@ -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);