From 063881b5bd6f2c1021936e2ff47f2f8c0e8456ce Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 21 May 2015 18:15:29 -0700 Subject: [PATCH] Fix a couple of doubled semicolons --- Marlin/temperature.cpp | 2 +- Marlin/ultralcd_implementation_hitachi_HD44780.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp index 5799a44d1..4d8973cad 100644 --- a/Marlin/temperature.cpp +++ b/Marlin/temperature.cpp @@ -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; diff --git a/Marlin/ultralcd_implementation_hitachi_HD44780.h b/Marlin/ultralcd_implementation_hitachi_HD44780.h index 27e2be0e3..ca41a6b3a 100644 --- a/Marlin/ultralcd_implementation_hitachi_HD44780.h +++ b/Marlin/ultralcd_implementation_hitachi_HD44780.h @@ -396,7 +396,7 @@ char lcd_printPGM(const char* str) { } char lcd_print(char* str) { - char c, n = 0;; + char c, n = 0; unsigned char i = 0; while ((c = str[i++])) n += charset_mapper(c); return n;