Minor formatting in queue.cpp

This commit is contained in:
Scott Lahteine 2018-02-08 01:31:19 -06:00
parent 704d33c374
commit 09c8807a36

View file

@ -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