diff options
Diffstat (limited to 'source/fitz/load-tiff.c')
-rw-r--r-- | source/fitz/load-tiff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/load-tiff.c b/source/fitz/load-tiff.c index 5806bc00..a7d10d00 100644 --- a/source/fitz/load-tiff.c +++ b/source/fitz/load-tiff.c @@ -446,8 +446,8 @@ fz_decode_tiff_strips(struct tiff *tiff) fz_decode_tiff_lzw(tiff, stm, wp, wlen); break; case 6: - fz_throw(tiff->ctx, FZ_ERROR_GENERIC, "deprecated JPEG in TIFF compression not supported"); - break; + fz_warn(tiff->ctx, "deprecated JPEG in TIFF compression not fully supported"); + /* fall through */ case 7: fz_decode_tiff_jpeg(tiff, stm, wp, wlen); break; |