Skip to content
Snippets Groups Projects
Commit a5fa5866 authored by Scott Lahteine's avatar Scott Lahteine Committed by GitHub
Browse files

Preferred patch to gcode.h

parent 4ecd41ef
No related branches found
No related tags found
No related merge requests found
...@@ -135,7 +135,7 @@ public: ...@@ -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 = (char*) (DECIMAL_SIGNED(p[1]) ? &p[1] : NULL); if (b) value_ptr = DECIMAL_SIGNED(p[1]) ? &p[1] : (char*)NULL;
return b; return b;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment