diff options
Diffstat (limited to 'lcd.c')
-rw-r--r-- | lcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -205,7 +205,7 @@ void LCD_write_padded_spaces(int row, int col, char *LCD_string, int width) padded = g_strdup_printf ("%s%*s", LCD_string, width - in_len, ""); } - LCD_write(row, col, padded); + LCD_write(row, col, padded); g_free (padded); } |