summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2016-06-15 00:26:13 +0200
committerSebastian Rasmussen <sebras@gmail.com>2016-06-15 00:26:59 +0200
commitd67f59b37a7177f5cf47ae9bfd580a19ca698b5f (patch)
tree94e3709d5318b4ca11eaf9c2af22688b6f5a0734
parentb4d333f52c8c115e25537310ddfbbf6c323c3f2e (diff)
downloadmupdf-d67f59b37a7177f5cf47ae9bfd580a19ca698b5f.tar.xz
tiff: Add omitted static void return type.
Commit 44d65838233baef2c16397847dca3061cde7ec4e accidentally omitted the return type when adding TIFF SGI LUV decoding.
-rw-r--r--source/fitz/load-tiff.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/fitz/load-tiff.c b/source/fitz/load-tiff.c
index 297d71dc..292c1b87 100644
--- a/source/fitz/load-tiff.c
+++ b/source/fitz/load-tiff.c
@@ -154,6 +154,7 @@ fz_decode_tiff_packbits(fz_context *ctx, struct tiff *tiff, fz_stream *chain, un
fz_drop_stream(ctx, stm);
}
+static void
fz_decode_tiff_sgilog16(fz_context *ctx, struct tiff *tiff, fz_stream *chain, unsigned char *wp, int wlen, int w)
{
fz_stream *stm = fz_open_sgilog16(ctx, chain, w);