diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-17 19:24:33 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-17 19:24:33 (EDT) |
commit | 5fb85906a8eb361088ca397d2a3e9d8ce14bb3f1 (patch) | |
tree | 75b0f69371807aa41827ef422af9e5817ae6f7ef /include | |
parent | 34b3f44f06f69919b9ee0099ef93711fdce6ca15 (diff) |
include/linux/font.h: Fix type of (struct font_desc).data
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/font.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/font.h b/include/linux/font.h index baf233a..c496252 100644 --- a/include/linux/font.h +++ b/include/linux/font.h @@ -23,12 +23,12 @@ #define LINUX_FONT_H struct font_desc { - int idx; - const char *name; - int width; - int height; - const void *data; - int pref; + int idx; + const char *name; + int width; + int height; + const unsigned char *data; + int pref; }; #define MPLUS_1MN_MEDIUM_10x14_IDX 0 |