value check was looking at the code

This commit is contained in:
Bob-the-Kuhn 2017-05-26 14:49:42 -05:00
parent fb5e0ffe16
commit 868e7db4ae

View file

@ -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;
}