summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2003-01-12 03:30:45 +0000
committerJohn Millaway <john43@users.sourceforge.net>2003-01-12 03:30:45 +0000
commit45005efe8171819dc32895b8d6f3cf6320764c09 (patch)
tree10e5c7250da7de3e23b048812720afc8a0e36aaa
parente70d35a7dea853500e2847692281f949eee3f6ec (diff)
Fixed table deserialization bug on big-endian archs. Patch sent from Bryce Nichols <bryce@bnichols.org>.
-rw-r--r--tables_shared.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tables_shared.h b/tables_shared.h
index 9676d47..bbf9910 100644
--- a/tables_shared.h
+++ b/tables_shared.h
@@ -115,7 +115,7 @@ struct yytbl_hdr {
/** A single serialized table */
struct yytbl_data {
- enum yytbl_id td_id; /**< flex_uint16_t table identifier */
+ flex_uint16_t td_id; /**< enum yytbl_id table identifier */
flex_uint16_t td_flags; /**< how to interpret this data */
flex_uint32_t td_hilen; /**< num elements in highest dimension array */
flex_uint32_t td_lolen; /**< num elements in lowest dimension array */