fix missing semicolon (#11961)

This commit is contained in:
Hannes Brandstätter-Müller 2018-09-29 21:46:08 +02:00 committed by Scott Lahteine
parent e6339a4aa6
commit bb6286f201
1 changed files with 1 additions and 1 deletions

View File

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