summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2013-09-27 13:41:19 +0100
committerRobin Watts <robin.watts@artifex.com>2013-09-27 13:42:00 +0100
commita9c8633ee803201bac4907b9f633a56c32051675 (patch)
treee41bfd03378bdb890e4c7a6d564a804b36ae5fa8 /include
parent6a10189b6611d746b8dfbc6fb1f42d65beb708e3 (diff)
downloadmupdf-a9c8633ee803201bac4907b9f633a56c32051675.tar.xz
Fix typo in struct definition.
Thanks to Zaister for reporting this.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/pdf/document.h5
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;