summaryrefslogtreecommitdiff
path: root/stream/stm_open.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@hotmail.com>2008-03-08 18:21:14 +0100
committerSebastian Rasmussen <sebras@hotmail.com>2008-03-08 18:21:14 +0100
commit5653ed4d9e7d413192a8923d29eb05c752d0b1ac (patch)
tree54d88cfcf3852f404ff532c3084de6d1d4f858f9 /stream/stm_open.c
parente921e12bcfa3a343eac5e4b7ba3f2566f5eff49f (diff)
downloadmupdf-5653ed4d9e7d413192a8923d29eb05c752d0b1ac.tar.xz
Fixed almost all compiler 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 6481288a..43d2a60b 100644
--- a/stream/stm_open.c
+++ b/stream/stm_open.c
@@ -205,7 +205,7 @@ fz_error * fz_openwbuffer(fz_stream **stmp, fz_buffer *buf)
return openbuffer(stmp, buf, FZ_SWRITE);
}
-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;