diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-11 03:06:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-11 03:06:05 (GMT) |
commit | 0b3cccd0cb2521ef77077d677581d2d3342cdc6f (patch) | |
tree | 9cfbea07131180b489808bb4e194353daa853565 /src/H5Opkg.h | |
parent | 48f022a701da0912a4776a3d9d24a102dd562b5f (diff) | |
download | hdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.zip hdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.tar.gz hdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.tar.bz2 |
[svn-r13496] Description:
Reduce size of "default" link message storage.
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r-- | src/H5Opkg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h index 17532e0..0eed076 100644 --- a/src/H5Opkg.h +++ b/src/H5Opkg.h @@ -89,10 +89,10 @@ #define H5O_CRT_OHDR_FLAGS_DEF H5O_HDR_STORE_TIMES /* Object header status flag definitions */ -#define H5O_HDR_CHUNK0_1 0x00 -#define H5O_HDR_CHUNK0_2 0x01 -#define H5O_HDR_CHUNK0_4 0x02 -#define H5O_HDR_CHUNK0_8 0x03 +#define H5O_HDR_CHUNK0_1 0x00 /* Use 1-byte value for chunk #0 size */ +#define H5O_HDR_CHUNK0_2 0x01 /* Use 2-byte value for chunk #0 size */ +#define H5O_HDR_CHUNK0_4 0x02 /* Use 4-byte value for chunk #0 size */ +#define H5O_HDR_CHUNK0_8 0x03 /* Use 8-byte value for chunk #0 size */ /* * Size of object header prefix. |