add missing const for -Wall

This commit is contained in:
Stefan `Sec` Zehl 2011-05-12 02:22:38 +02:00
parent 69dbfe63ec
commit 32fe82eff9
1 changed files with 1 additions and 1 deletions

View File

@ -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