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
   void start_watching_heater(int e) {
1006
   void start_watching_heater(int e) {
1007
     if (degHotend(e) < degTargetHotend(e) - (WATCH_TEMP_INCREASE + TEMP_HYSTERESIS + 1)) {
1007
     if (degHotend(e) < degTargetHotend(e) - (WATCH_TEMP_INCREASE + TEMP_HYSTERESIS + 1)) {
1008
       watch_target_temp[e] = degHotend(e) + WATCH_TEMP_INCREASE;
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
     else
1011
     else
1012
       watch_heater_next_ms[e] = 0;
1012
       watch_heater_next_ms[e] = 0;

+ 1
- 1
Marlin/ultralcd_implementation_hitachi_HD44780.h View File

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

Loading…
Cancel
Save