From 09c8807a36cdbb777612431926ac8c528b0d84b5 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Thu, 8 Feb 2018 01:31:19 -0600
Subject: [PATCH] Minor formatting in queue.cpp

---
 Marlin/src/gcode/queue.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Marlin/src/gcode/queue.cpp b/Marlin/src/gcode/queue.cpp
index f613ab1362..d5ad43550a 100644
--- a/Marlin/src/gcode/queue.cpp
+++ b/Marlin/src/gcode/queue.cpp
@@ -358,7 +358,7 @@ inline void get_serial_commands() {
         }
 
         #if DISABLED(EMERGENCY_PARSER)
-          // If command was e-stop process now
+          // Process critical commands early
           if (strcmp(command, "M108") == 0) {
             wait_for_heatup = false;
             #if ENABLED(ULTIPANEL)
@@ -366,7 +366,7 @@ inline void get_serial_commands() {
             #endif
           }
           if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
-          if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
+          if (strcmp(command, "M410") == 0) quickstop_stepper();
         #endif
 
         #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0