Merge pull request #6914 from Bob-the-Kuhn/Gcode.h-bug-fix

gcode.h - fix compile error
2.0.x
Bob-the-Kuhn 8 years ago committed by GitHub
commit 7ed0761e09

@ -135,7 +135,7 @@ public:
static bool seen(const char c) { static bool seen(const char c) {
const char *p = strchr(command_args, c); const 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 = (char*) (DECIMAL_SIGNED(p[1]) ? &p[1] : NULL);
return b; return b;
} }

Loading…
Cancel
Save