Skip to content
Snippets Groups Projects
Commit 70e7a465 authored by Giuliano Zaro's avatar Giuliano Zaro Committed by Scott Lahteine
Browse files

[2.0.x] Fix compile error (#11951)

Fix compile error intruduced with M109 modification
parent 935b1209
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment