From 194c59c1bb37b301b67299a01435151fb9c55c64 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 22 Jul 2018 23:25:46 +0100 Subject: [PATCH] font8x8; revert deconstification We don't want sdcc making a huge initializer blob of it. Once we fix sdcc we can sort this out. It might matter for other ports if so we may have to ifdef it a bit --- Kernel/font8x8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/font8x8.c b/Kernel/font8x8.c index 89aaa2a4..b769bc06 100644 --- a/Kernel/font8x8.c +++ b/Kernel/font8x8.c @@ -12,7 +12,7 @@ #define FONTDATAMAX 2048 #endif -unsigned char fontdata_8x8[FONTDATAMAX] = { +const unsigned char fontdata_8x8[FONTDATAMAX] = { #ifndef CONFIG_FONT8X8SMALL /* 0 0x00 '^@' */ 0x00, /* 00000000 */ -- 2.34.1