Browse Source

Clean out a warning

in ultralcd_implementation_hitachi_HD44780.h lcd_print( about array index.
pull/1/head
AnHardt 10 years ago
parent
commit
eff6a2bd2e
  1. 2
      Marlin/ultralcd_implementation_hitachi_HD44780.h

2
Marlin/ultralcd_implementation_hitachi_HD44780.h

@ -414,7 +414,7 @@ char lcd_printPGM(const char* str) {
char lcd_print(char* str) {
char c;
char i = 0;
unsigned char i = 0;
char n = 0;
while((c = str[i++])) {
n += charset_mapper(c);

Loading…
Cancel
Save