summaryrefslogtreecommitdiff
path: root/firmware/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/font.c')
-rw-r--r--firmware/font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/font.c b/firmware/font.c
index f9453d5bac..f33490869a 100644
--- a/firmware/font.c
+++ b/firmware/font.c
@@ -45,7 +45,7 @@ extern struct font sysfont;
45static struct font font_ui; 45static struct font font_ui;
46 46
47/* system font table, in order of FONT_xxx definition */ 47/* system font table, in order of FONT_xxx definition */
48static struct font* sysfonts[MAXFONTS] = { &sysfont, &font_ui }; 48static struct font* const sysfonts[MAXFONTS] = { &sysfont, &font_ui };
49 49
50/* static buffer allocation structures */ 50/* static buffer allocation structures */
51static unsigned char mbuf[MAX_FONT_SIZE]; 51static unsigned char mbuf[MAX_FONT_SIZE];