mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-22 17:52:57 +00:00
fix missing semicolon (#11961)
This commit is contained in:
parent
e6339a4aa6
commit
bb6286f201
1 changed files with 1 additions and 1 deletions
|
@ -8417,7 +8417,7 @@ inline void gcode_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);
|
||||
|
|
Loading…
Reference in a new issue