mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue