From 54a38844f79ba18122e185ad4f8ad9108f703e78 Mon Sep 17 00:00:00 2001 From: Turo Lamminen Date: Sat, 3 Mar 2018 00:11:30 +0200 Subject: [PATCH] textscreen: Make name member const in txt_font_t --- textscreen/txt_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textscreen/txt_sdl.c b/textscreen/txt_sdl.c index 7c8c193f..28211201 100644 --- a/textscreen/txt_sdl.c +++ b/textscreen/txt_sdl.c @@ -34,7 +34,7 @@ typedef struct { - char *name; + const char *name; const uint8_t *data; unsigned int w; unsigned int h;