Merge pull request #6866 from Bob-the-Kuhn/Parser-fix

Parser fix
master
Bob-the-Kuhn 7 years ago committed by GitHub
commit f0d545b950

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

Loading…
Cancel
Save