From 32fe82eff9ff719e079929a6e1631e16e8bcfe74 Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Thu, 12 May 2011 02:22:38 +0200 Subject: [PATCH] add missing const for -Wall --- lcd/fonts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lcd/fonts.h b/lcd/fonts.h index 6d281d9..4372931 100644 --- a/lcd/fonts.h +++ b/lcd/fonts.h @@ -22,6 +22,6 @@ struct FONT_DEF { const FONT_CHAR_INFO *charInfo; /* Pointer to array of char information */ }; -typedef struct FONT_DEF * FONT; +typedef const struct FONT_DEF * FONT; #endif