Browse Source

Fix warning with FASTER_GCODE_PARSER disabled

pull/1/head
Scott Lahteine 7 years ago
parent
commit
645df23eb0
  1. 2
      Marlin/src/gcode/parser.h

2
Marlin/src/gcode/parser.h

@ -145,7 +145,7 @@ public:
// Code is found in the string. If not found, value_ptr is unchanged.
// This allows "if (seen('A')||seen('B'))" to use the last-found value.
static bool seen(const char c) {
const char *p = strchr(command_args, c);
char *p = strchr(command_args, c);
const bool b = !!p;
if (b) value_ptr = valid_float(&p[1]) ? &p[1] : (char*)NULL;
return b;

Loading…
Cancel
Save