summaryrefslogtreecommitdiff
path: root/include/mupdf/pdf/xref.h
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2017-12-11 21:31:41 +0100
committerSebastian Rasmussen <sebras@gmail.com>2017-12-13 21:38:26 +0100
commitb1ee9743699d8289864c2080c0a5daf74c5c81cc (patch)
tree65631a88713dcbc8155c879dfa81d6eee2979b26 /include/mupdf/pdf/xref.h
parent72f9012f643934e545d646795867057468815a00 (diff)
downloadmupdf-b1ee9743699d8289864c2080c0a5daf74c5c81cc.tar.xz
PDF object numbers need not be int64_t, int is sufficient.
This is true because they are now limited below PDF_MAX_OBJECT_NUMBER.
Diffstat (limited to 'include/mupdf/pdf/xref.h')
-rw-r--r--include/mupdf/pdf/xref.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mupdf/pdf/xref.h b/include/mupdf/pdf/xref.h
index 06633337..de23147e 100644
--- a/include/mupdf/pdf/xref.h
+++ b/include/mupdf/pdf/xref.h
@@ -58,7 +58,7 @@ struct pdf_xref_subsec_s
{
pdf_xref_subsec *next;
int len;
- int64_t start;
+ int start;
pdf_xref_entry *table;
};