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:
parent
9d6c5d8c11
commit
c8cc2d1dd6
@ -43,7 +43,7 @@ using RubberBand::usleep;
|
|||||||
|
|
||||||
double tempo_convert(const char *str)
|
double tempo_convert(const char *str)
|
||||||
{
|
{
|
||||||
char *d = strchr((char *)str, ':');
|
const char *d = strchr((char *)str, ':');
|
||||||
|
|
||||||
if (!d || !*d) {
|
if (!d || !*d) {
|
||||||
double m = atof(str);
|
double m = atof(str);
|
||||||
|
Loading…
Reference in New Issue
Block a user