diff --git a/Marlin/gcode.h b/Marlin/gcode.h
index 8348f5646324c9e672207fe82314c4bec7fe420a..e836472ee6536a113cead7c82d6f0f246c2049b6 100644
--- a/Marlin/gcode.h
+++ b/Marlin/gcode.h
@@ -135,7 +135,7 @@ public:
     static bool seen(const char c) {
       char *p = strchr(command_args, c);
       const bool b = !!p;
-      if (b) value_ptr = DECIMAL_SIGNED(*p) ? p + 1 : NULL;
+      if (b) value_ptr = DECIMAL_SIGNED(*(p + 1)) ? p + 1 : NULL;
       return b;
     }