Fix a couple of doubled semicolons
This commit is contained in:
parent
94dff5b36a
commit
063881b5bd
2 changed files with 2 additions and 2 deletions
|
|
@ -1006,7 +1006,7 @@ void tp_init() {
|
|||
void start_watching_heater(int e) {
|
||||
if (degHotend(e) < degTargetHotend(e) - (WATCH_TEMP_INCREASE + TEMP_HYSTERESIS + 1)) {
|
||||
watch_target_temp[e] = degHotend(e) + WATCH_TEMP_INCREASE;
|
||||
watch_heater_next_ms[e] = millis() + WATCH_TEMP_PERIOD * 1000;;
|
||||
watch_heater_next_ms[e] = millis() + WATCH_TEMP_PERIOD * 1000;
|
||||
}
|
||||
else
|
||||
watch_heater_next_ms[e] = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue