diff options
Diffstat (limited to 'source/fitz/load-tiff.c')
-rw-r--r-- | source/fitz/load-tiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/load-tiff.c b/source/fitz/load-tiff.c index 054baebe..c2799f7c 100644 --- a/source/fitz/load-tiff.c +++ b/source/fitz/load-tiff.c @@ -157,7 +157,7 @@ fz_decode_tiff_packbits(fz_context *ctx, struct tiff *tiff, fz_stream *chain, un static void fz_decode_tiff_lzw(fz_context *ctx, struct tiff *tiff, fz_stream *chain, unsigned char *wp, int wlen) { - fz_stream *stm = fz_open_lzwd(ctx, chain, 1); + fz_stream *stm = fz_open_lzwd(ctx, chain, 1, 9); fz_read(ctx, stm, wp, wlen); fz_drop_stream(ctx, stm); } |