fix type of code_has_value

This commit is contained in:
Scott Lahteine 2015-04-13 18:02:17 -07:00
parent 17ad80c1e1
commit 642f6a92bc

View File

@ -888,7 +888,7 @@ void get_command() {
#endif // SDSUPPORT
}
float code_has_value() {
bool code_has_value() {
char c = *(strchr_pointer + 1);
return (c >= '0' && c <= '9') || c == '-' || c == '+' || c == '.';
}