summaryrefslogtreecommitdiff
path: root/apps/sleeptimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/sleeptimer.c')
-rw-r--r--apps/sleeptimer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/sleeptimer.c b/apps/sleeptimer.c
index 982cbe621a..e9b0924388 100644
--- a/apps/sleeptimer.c
+++ b/apps/sleeptimer.c
@@ -126,7 +126,7 @@ bool sleeptimer_screen(void)
126 minutes = (seconds - (hours * 3600)) / 60; 126 minutes = (seconds - (hours * 3600)) / 60;
127 snprintf(buf, 32, "%d:%02d", 127 snprintf(buf, 32, "%d:%02d",
128 hours, minutes); 128 hours, minutes);
129 lcd_puts(0, 1, buf); 129 lcd_puts(0, 1, (unsigned char *)buf);
130 130
131 if (sayit && global_settings.talk_menu) 131 if (sayit && global_settings.talk_menu)
132 { 132 {