Fix some compilation warnings

This commit is contained in:
Julien de Kozak 2013-03-23 14:33:20 +01:00
parent 268553ecd4
commit 16f8fc0657
9 changed files with 13 additions and 11 deletions

View file

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