Fix compiler warning: sketch/ultralcd.cpp:855:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int dots = 0; dots < heating_status_counter; dots++)
This commit is contained in:
parent
58155cacbc
commit
620c015b65
1 changed files with 1 additions and 1 deletions
|
@ -852,7 +852,7 @@ if (print_sd_status)
|
||||||
lcd_set_cursor(7, 3);
|
lcd_set_cursor(7, 3);
|
||||||
lcd_puts_P(PSTR(" "));
|
lcd_puts_P(PSTR(" "));
|
||||||
|
|
||||||
for (int dots = 0; dots < heating_status_counter; dots++)
|
for (unsigned int dots = 0; dots < heating_status_counter; dots++)
|
||||||
{
|
{
|
||||||
lcd_set_cursor(7 + dots, 3);
|
lcd_set_cursor(7 + dots, 3);
|
||||||
lcd_print('.');
|
lcd_print('.');
|
||||||
|
|
Loading…
Reference in a new issue