From a5fa586642253ea4c8ae20bb0703d3df3266df06 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed, 31 May 2017 21:18:16 -0500
Subject: [PATCH] Preferred patch to gcode.h

---
 Marlin/gcode.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/gcode.h b/Marlin/gcode.h
index 007bc6dccd..ec5b229bd2 100644
--- a/Marlin/gcode.h
+++ b/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;
     }