summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-09-11 14:02:50 +0200
committerRobin Watts <robin.watts@artifex.com>2018-09-19 17:13:45 +0100
commit29af4a4709fea3ad06514083d3e96f08a202ebf4 (patch)
treecd0363e4e7c881e89004b157d2898bf5ad8dc5be
parent2b06a50140b7eb81eb55dcc1547fee4e8842e697 (diff)
downloadmupdf-29af4a4709fea3ad06514083d3e96f08a202ebf4.tar.xz
Fix warning.
-rw-r--r--source/pdf/pdf-xref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-xref.c b/source/pdf/pdf-xref.c
index ed12b35c..2475b6e8 100644
--- a/source/pdf/pdf-xref.c
+++ b/source/pdf/pdf-xref.c
@@ -1161,7 +1161,7 @@ pdf_read_xref_sections(fz_context *ctx, pdf_document *doc, int64_t ofs, pdf_lexb
}
if (i < len)
{
- fz_warn(ctx, "ignoring xref section recursion at offset %lu", ofs);
+ fz_warn(ctx, "ignoring xref section recursion at offset %d", (int)ofs);
break;
}
if (len == cap)