diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-29 04:44:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-29 04:44:28 (GMT) |
commit | ce05f32a3d33fad5401b6d1d291676771fc300dd (patch) | |
tree | 5f6477a8e166d056dc85365ab2cf55e2ed0e46c4 /src/H5Opkg.h | |
parent | 2f3344a0495c09448e7fac023c8d91a567110a48 (diff) | |
download | hdf5-ce05f32a3d33fad5401b6d1d291676771fc300dd.zip hdf5-ce05f32a3d33fad5401b6d1d291676771fc300dd.tar.gz hdf5-ce05f32a3d33fad5401b6d1d291676771fc300dd.tar.bz2 |
[svn-r12995] Description:
Make the memory size of the max. compact & min. dense attribute storage
variables align with the property list size, instead of the size on disk, to
better handle big-endian machines.
Tested on:
FreeBSD/32 4.11 (sleipnir)
Linux/32 2.4 (heping)
Linux/64 2.4 (mir)
AIX/32 5.? (copper)
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r-- | src/H5Opkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h index e8b72e9..b1c4498 100644 --- a/src/H5Opkg.h +++ b/src/H5Opkg.h @@ -209,8 +209,8 @@ struct H5O_t { time_t btime; /*birth time */ /* Attribute information (stored, for versions > 1) */ - uint16_t max_compact; /* Maximum # of compact attributes */ - uint16_t min_dense; /* Minimum # of "dense" attributes */ + unsigned max_compact; /* Maximum # of compact attributes */ + unsigned min_dense; /* Minimum # of "dense" attributes */ hsize_t nattrs; /* Number of attributes in the group */ haddr_t attr_fheap_addr; /* Address of fractal heap for storing "dense" attributes */ haddr_t name_bt2_addr; /* Address of v2 B-tree for indexing names of attributes */ |