Fix compile error

Fix compile error
This commit is contained in:
Theo Arends 2019-03-06 20:38:13 +01:00
parent 2ec545d739
commit 7ab884afc9

View File

@ -154,7 +154,7 @@ char* subStr(char* dest, char* str, const char *delim, int index)
return sub; return sub;
} }
double CharToDouble(char *str) double CharToDouble(const char *str)
{ {
// simple ascii to double, because atof or strtod are too large // simple ascii to double, because atof or strtod are too large
char strbuf[24]; char strbuf[24];