diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2017-06-19 14:37:59 +0200 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2017-06-22 15:46:56 +0100 |
commit | c444b1b1a593ab253944cc2b33f22733115c0ff7 (patch) | |
tree | 2f6d52f6186e4c894bdf2741481bb7fd31cee4cb /platform | |
parent | 638384c10ff1b7b1233bec1d62db3e82cffeaafc (diff) | |
download | mupdf-c444b1b1a593ab253944cc2b33f22733115c0ff7.tar.xz |
Use unsigned char arrays in hexdumped data.
Diffstat (limited to 'platform')
-rw-r--r-- | platform/gl/gl-font.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/gl/gl-font.c b/platform/gl/gl-font.c index 98bb62af..44f42c3c 100644 --- a/platform/gl/gl-font.c +++ b/platform/gl/gl-font.c @@ -78,7 +78,7 @@ static void clear_font_cache(void) void ui_init_fonts(fz_context *ctx, float pixelsize) { - const char *data; + const unsigned char *data; int size; glGenTextures(1, &g_cache_tex); |