diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-07-05 12:32:16 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2016-07-06 15:45:40 +0200 |
commit | 467af4f7b516b97ca082be794c8c462e4dea41ad (patch) | |
tree | 8bc9a9c55a9d05668ff072abaf823fb52b650c85 | |
parent | 4d13ba9adbe46fc84fea662b906347bfa90ce208 (diff) | |
download | mupdf-467af4f7b516b97ca082be794c8c462e4dea41ad.tar.xz |
Update luratech jbig2 function prototype with int to size_t change.
-rw-r--r-- | source/fitz/filter-jbig2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/filter-jbig2.c b/source/fitz/filter-jbig2.c index 0ce72201..63ad039f 100644 --- a/source/fitz/filter-jbig2.c +++ b/source/fitz/filter-jbig2.c @@ -128,7 +128,7 @@ jbig2_write(unsigned char *buf, unsigned long row, unsigned long width, unsigned } static int -next_jbig2d(fz_context *ctx, fz_stream *stm, int len) +next_jbig2d(fz_context *ctx, fz_stream *stm, size_t len) { fz_jbig2d *state = stm->state; JB2_Error err; |