summaryrefslogtreecommitdiff
path: root/source/fitz
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-11-07 23:35:18 +0100
committerTor Andersson <tor.andersson@artifex.com>2018-11-07 23:35:18 +0100
commit8ecdb40888d79fd0c92a4ac32490ba1140a330cf (patch)
tree435cae8ec6b10a35bc949ad0930a41516ce86942 /source/fitz
parent6a5752bcebd674dcc83b9bbc1664880132e45d90 (diff)
downloadmupdf-8ecdb40888d79fd0c92a4ac32490ba1140a330cf.tar.xz
Fix typo.
Diffstat (limited to 'source/fitz')
-rw-r--r--source/fitz/load-tiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/load-tiff.c b/source/fitz/load-tiff.c
index 404af929..5bdd2a58 100644
--- a/source/fitz/load-tiff.c
+++ b/source/fitz/load-tiff.c
@@ -1163,7 +1163,7 @@ tiff_decode_ifd(fz_context *ctx, struct tiff *tiff)
tiff->stride = (tiff->imagewidth * tiff->samplesperpixel * tiff->bitspersample + 7) / 8;
tiff->tilestride = (tiff->tilewidth * tiff->samplesperpixel * tiff->bitspersample + 7) / 8;
-#if FZ_ENALBE_ICC
+#if FZ_ENABLE_ICC
if (tiff->profile)
{
fz_buffer *buff = NULL;