summaryrefslogtreecommitdiff
path: root/lcd.c
diff options
context:
space:
mode:
authorroot <root@avtech.domain.avtechpulse.com>1999-12-31 20:01:39 -0500
committerroot <root@avtech.domain.avtechpulse.com>1999-12-31 20:01:39 -0500
commitcd1b18c4e87c0de1a5396ca5554ac8a7890d49c9 (patch)
tree6541b53f231b307b1bf0c4f24a202bcfec34528c /lcd.c
parent45453184e212d35229e33045fd5e641c85beec68 (diff)
more elegant mode_name array handling
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 d98c0b0..7079aad 100644
--- a/lcd.c
+++ b/lcd.c
@@ -212,7 +212,7 @@ void LCD_write_padded_spaces(int row, int col, char *LCD_string, int width)
void LCD_write_padded_to_end_of_line(int row, int col, char *LCD_string)
{
- LCD_write_padded_spaces (row, col, LCD_string, LCD_cols - col - strlen (LCD_string));
+ LCD_write_padded_spaces (row, col, LCD_string, LCD_cols - col);
}