diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-28 18:51:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-28 18:51:23 (GMT) |
commit | 1687720a5fe51d32e1544371eaa75af162f35a31 (patch) | |
tree | a876648b981f58cd0299ee4754ae4e6620a6b1f1 /src/H5Oprivate.h | |
parent | 0bd83631d5ed24fe948a273e8a4d4bd8f128a86c (diff) | |
download | hdf5-1687720a5fe51d32e1544371eaa75af162f35a31.zip hdf5-1687720a5fe51d32e1544371eaa75af162f35a31.tar.gz hdf5-1687720a5fe51d32e1544371eaa75af162f35a31.tar.bz2 |
[svn-r12991] Description:
Reduce the size of some of the group information to more reasonable bounds.
(16-bit values instead of 32-bit values).
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index 05b85e3..61fa573 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -315,12 +315,12 @@ typedef struct H5O_ginfo_t { hbool_t track_corder; /* Are creation order values tracked on links? */ /* (storage management info) */ - uint32_t max_compact; /* Maximum # of compact links */ - uint32_t min_dense; /* Minimum # of "dense" links */ + uint16_t max_compact; /* Maximum # of compact links */ + uint16_t min_dense; /* Minimum # of "dense" links */ /* (initial object header size info) */ - uint32_t est_num_entries; /* Estimated # of entries in group */ - uint32_t est_name_len; /* Estimated length of entry name */ + uint16_t est_num_entries; /* Estimated # of entries in group */ + uint16_t est_name_len; /* Estimated length of entry name */ } H5O_ginfo_t; /* |