Browse Source

Fix a couple of doubled semicolons

Scott Lahteine 9 years ago
parent
commit
063881b5bd
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/temperature.cpp
  2. 1
    1
      Marlin/ultralcd_implementation_hitachi_HD44780.h

+ 1
- 1
Marlin/temperature.cpp View File

@@ -1006,7 +1006,7 @@ void tp_init() {
1006 1006
   void start_watching_heater(int e) {
1007 1007
     if (degHotend(e) < degTargetHotend(e) - (WATCH_TEMP_INCREASE + TEMP_HYSTERESIS + 1)) {
1008 1008
       watch_target_temp[e] = degHotend(e) + WATCH_TEMP_INCREASE;
1009
-      watch_heater_next_ms[e] = millis() + WATCH_TEMP_PERIOD * 1000;;
1009
+      watch_heater_next_ms[e] = millis() + WATCH_TEMP_PERIOD * 1000;
1010 1010
     }
1011 1011
     else
1012 1012
       watch_heater_next_ms[e] = 0;

+ 1
- 1
Marlin/ultralcd_implementation_hitachi_HD44780.h View File

@@ -396,7 +396,7 @@ char lcd_printPGM(const char* str) {
396 396
 }
397 397
 
398 398
 char lcd_print(char* str) {
399
-  char c, n = 0;;
399
+  char c, n = 0;
400 400
   unsigned char i = 0;
401 401
   while ((c = str[i++])) n += charset_mapper(c);
402 402
   return n;

Loading…
Cancel
Save