Browse Source

Preferred patch to gcode.h

pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
a5fa586642
  1. 2
      Marlin/gcode.h

2
Marlin/gcode.h

@ -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 = (char*) (DECIMAL_SIGNED(p[1]) ? &p[1] : NULL);
if (b) value_ptr = DECIMAL_SIGNED(p[1]) ? &p[1] : (char*)NULL;
return b;
}

Loading…
Cancel
Save