diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-07-20 14:41:13 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-07-20 14:41:13 (GMT) |
commit | 29bf0662db641fde339ff9237bd1277509a047f1 (patch) | |
tree | 159c0ea547f974050e64a51da81d6fff4097896b /src/H5Gprivate.h | |
parent | 365dac33e385affcb57a6b8a5cf53f8d03ac2510 (diff) | |
download | hdf5-29bf0662db641fde339ff9237bd1277509a047f1.zip hdf5-29bf0662db641fde339ff9237bd1277509a047f1.tar.gz hdf5-29bf0662db641fde339ff9237bd1277509a047f1.tar.bz2 |
[svn-r516] Changes since 19980720
----------------------
./doc/html/H5.format.html
./src/H5F.c
./src/H5Gprivate.h
./src/H5Oshared.c
Added file alignment fields: the boot block has an extra
reserved address field. The symbol table entry scratch pad
space was reduced from 24 bytes to 16 bytes. The index
permutation was moved earlier in the data type message for
compound data types and extra padding was added. Four bytes
of padding was added to the shared message format.
Diffstat (limited to 'src/H5Gprivate.h')
-rw-r--r-- | src/H5Gprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gprivate.h b/src/H5Gprivate.h index 03f0348..0f8f773 100644 --- a/src/H5Gprivate.h +++ b/src/H5Gprivate.h @@ -38,7 +38,7 @@ /* * The disk size for a symbol table entry... */ -#define H5G_SIZEOF_SCRATCH 24 +#define H5G_SIZEOF_SCRATCH 16 #define H5G_SIZEOF_ENTRY(F) \ (H5F_SIZEOF_SIZE(F) + /*offset of name into heap */ \ H5F_SIZEOF_ADDR(F) + /*address of object header */ \ |