fix compile error

invalid conversion from 'const char*' to 'char*' [-fpermissive]
This commit is contained in:
Bob-the-Kuhn 2017-05-31 13:17:01 -05:00
parent 6354b40231
commit 8206bb9bb9

View file

@ -135,7 +135,7 @@ public:
static bool seen(const char c) {
const char *p = strchr(command_args, c);
const bool b = !!p;
if (b) value_ptr = DECIMAL_SIGNED(p[1]) ? &p[1] : NULL;
if (b) value_ptr = (char*) (DECIMAL_SIGNED(p[1]) ? &p[1] : NULL);
return b;
}