summaryrefslogtreecommitdiff
path: root/lcd.c
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2012-09-04 09:11:44 -0400
committerMichael J. Chudobiak <mjc@avtechpulse.com>2012-09-04 09:11:44 -0400
commit39d501c681b65b27e3bfebdb37517637429ea9c9 (patch)
treefd398af857cd32b65de6df63feaadb54db2a1f2d /lcd.c
parentc8044753779bcf3bf2090e09465e47606db3de6f (diff)
added message broadcasts
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);
}