summaryrefslogtreecommitdiff
path: root/lcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcd.c')
-rw-r--r--lcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcd.c b/lcd.c
index bedb844..42e7e2a 100644
--- a/lcd.c
+++ b/lcd.c
@@ -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);
}