diff options
author | Tor Andersson <tor@ghostscript.com> | 2008-09-29 00:26:20 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2008-09-29 00:26:20 +0200 |
commit | 809e2b93d156f4c92ee0dc44050823f698b0b54d (patch) | |
tree | fdc4c7d2dbc922b65b78198f7d2f7b1ee8bb23d1 /stream/stm_open.c | |
parent | cbb927639836734ebdd7e5d7d2f9eb8a03bea433 (diff) | |
download | mupdf-809e2b93d156f4c92ee0dc44050823f698b0b54d.tar.xz |
Removed signed/unsigned char pointer warnings.
Diffstat (limited to 'stream/stm_open.c')
-rw-r--r-- | stream/stm_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stm_open.c b/stream/stm_open.c index 633403bd..14e52642 100644 --- a/stream/stm_open.c +++ b/stream/stm_open.c @@ -219,7 +219,7 @@ fz_error * fz_openwbuffer(fz_stream **stmp, fz_buffer *buf) return fz_okay; } -fz_error * fz_openrmemory(fz_stream **stmp, char *mem, int len) +fz_error * fz_openrmemory(fz_stream **stmp, unsigned char *mem, int len) { fz_error *error; fz_buffer *buf; |