Commit 7164991c authored by Michael Meskes's avatar Michael Meskes

Improve error message for incorrect number inputs in libecpg.

parent f987f83d
...@@ -58,7 +58,6 @@ garbage_left(enum ARRAY_TYPE isarray, char **scan_length, enum COMPAT_MODE compa ...@@ -58,7 +58,6 @@ garbage_left(enum ARRAY_TYPE isarray, char **scan_length, enum COMPAT_MODE compa
do { do {
(*scan_length)++; (*scan_length)++;
} while (isdigit(**scan_length)); } while (isdigit(**scan_length));
return false;
} }
if (**scan_length != ' ' && **scan_length != '\0') if (**scan_length != ' ' && **scan_length != '\0')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment