From a61854686f432b730bda6a663e50bd6fe32b1f96 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 11 May 2018 23:38:26 +0100 Subject: [PATCH] font8x8: make non const as we may overwrite chunks of it now --- Kernel/font8x8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/font8x8.c b/Kernel/font8x8.c index b769bc06..89aaa2a4 100644 --- a/Kernel/font8x8.c +++ b/Kernel/font8x8.c @@ -12,7 +12,7 @@ #define FONTDATAMAX 2048 #endif -const unsigned char fontdata_8x8[FONTDATAMAX] = { +unsigned char fontdata_8x8[FONTDATAMAX] = { #ifndef CONFIG_FONT8X8SMALL /* 0 0x00 '^@' */ 0x00, /* 00000000 */ -- 2.34.1