mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-03-22 22:26:18 +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
|
#endif
|
||||||
|
|
||||||
const bool no_wait_for_cooling = parser.seenval('S'),
|
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) {
|
if (set_temp) {
|
||||||
const int16_t temp = parser.value_celsius();
|
const int16_t temp = parser.value_celsius();
|
||||||
thermalManager.setTargetHotend(temp, target_extruder);
|
thermalManager.setTargetHotend(temp, target_extruder);
|
||||||
|
|
Loading…
Add table
Reference in a new issue