From 70e7a465d80c0c945f17a6053e0f768bcf1356a4 Mon Sep 17 00:00:00 2001 From: Giuliano Zaro <3684609+GMagician@users.noreply.github.com> Date: Sat, 29 Sep 2018 20:48:23 +0200 Subject: [PATCH] [2.0.x] Fix compile error (#11951) Fix compile error intruduced with M109 modification --- Marlin/src/gcode/temperature/M104_M109.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/temperature/M104_M109.cpp b/Marlin/src/gcode/temperature/M104_M109.cpp index fa0178e7d4..7804b9ec75 100644 --- a/Marlin/src/gcode/temperature/M104_M109.cpp +++ b/Marlin/src/gcode/temperature/M104_M109.cpp @@ -90,7 +90,7 @@ void GcodeSuite::M109() { #endif const bool no_wait_for_cooling = parser.seenval('S'), - set_temp = no_wait_for_cooling || parser.seenval('R') + set_temp = no_wait_for_cooling || parser.seenval('R'); if (set_temp) { const int16_t temp = parser.value_celsius(); thermalManager.setTargetHotend(temp, target_extruder);