Tweak to gcode.h

This commit is contained in:
Scott Lahteine 2017-05-26 22:11:31 -05:00 committed by GitHub
parent f0d545b950
commit 55c700d537

View File

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