summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/screens.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/screens.c b/apps/screens.c
index 4ec35f9f57..76c8c42e64 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -517,7 +517,8 @@ bool set_time_screen(const char* title, struct tm *tm)
517 unsigned int statusbar_height = 0; 517 unsigned int statusbar_height = 0;
518 unsigned int separator_width, weekday_width; 518 unsigned int separator_width, weekday_width;
519 unsigned int prev_line_height; 519 unsigned int prev_line_height;
520 int daysinmonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; 520 static unsigned char daysinmonth[] =
521 {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
521 unsigned char buffer[20]; 522 unsigned char buffer[20];
522 struct viewport vp[NB_SCREENS]; 523 struct viewport vp[NB_SCREENS];
523 int nb_lines; 524 int nb_lines;