diff options
author | Robin Watts <robin.watts@artifex.com> | 2013-09-27 13:41:19 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2013-09-27 13:42:00 +0100 |
commit | a9c8633ee803201bac4907b9f633a56c32051675 (patch) | |
tree | e41bfd03378bdb890e4c7a6d564a804b36ae5fa8 | |
parent | 6a10189b6611d746b8dfbc6fb1f42d65beb708e3 (diff) | |
download | mupdf-a9c8633ee803201bac4907b9f633a56c32051675.tar.xz |
Fix typo in struct definition.
Thanks to Zaister for reporting this.
-rw-r--r-- | include/mupdf/pdf/document.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/mupdf/pdf/document.h b/include/mupdf/pdf/document.h index ec11b80f..cd0c03ab 100644 --- a/include/mupdf/pdf/document.h +++ b/include/mupdf/pdf/document.h @@ -170,15 +170,14 @@ int pdf_has_unsaved_changes(pdf_document *doc); typedef struct pdf_obj_read_state_s pdf_obj_read_state; -struct +struct pdf_obj_read_state_s { int offset; int num; int numofs; int gen; int genofs; -} -pdf_obj_read_state_s; +}; typedef struct pdf_signer_s pdf_signer; |