summaryrefslogtreecommitdiff
path: root/stream/stm_open.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2008-09-29 00:26:20 +0200
committerTor Andersson <tor@ghostscript.com>2008-09-29 00:26:20 +0200
commit809e2b93d156f4c92ee0dc44050823f698b0b54d (patch)
treefdc4c7d2dbc922b65b78198f7d2f7b1ee8bb23d1 /stream/stm_open.c
parentcbb927639836734ebdd7e5d7d2f9eb8a03bea433 (diff)
downloadmupdf-809e2b93d156f4c92ee0dc44050823f698b0b54d.tar.xz
Removed signed/unsigned char pointer warnings.
Diffstat (limited to 'stream/stm_open.c')
-rw-r--r--stream/stm_open.c2
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;