diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-27 15:57:04 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-27 15:57:04 (GMT) |
commit | 552bb205b9ff9ba43e91d81e9ecc69357b3b0cf3 (patch) | |
tree | 058641ddf724b39f14285b5dce3a482ba2438012 /src/H5Oshmesg.c | |
parent | 71285e804fbd7cd1d46b45a77f5ed3ed6f6e9360 (diff) | |
download | hdf5-552bb205b9ff9ba43e91d81e9ecc69357b3b0cf3.zip hdf5-552bb205b9ff9ba43e91d81e9ecc69357b3b0cf3.tar.gz hdf5-552bb205b9ff9ba43e91d81e9ecc69357b3b0cf3.tar.bz2 |
[svn-r13413] Description:
Further cleanups to superblock code:
- Move most of the ISOHM-specific code into the H5SM module
- Make only one checksum, for combined superblock & driver info
block
Minor other cleanups, etc.
Tested on:
Mac OS X/32 10.4.8 (amazon)
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Oshmesg.c')
-rw-r--r-- | src/H5Oshmesg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Oshmesg.c b/src/H5Oshmesg.c index 8f511a8..05898a3 100644 --- a/src/H5Oshmesg.c +++ b/src/H5Oshmesg.c @@ -89,7 +89,7 @@ H5O_shmesg_decode(H5F_t *f, hid_t UNUSED dxpl_id, unsigned UNUSED mesg_flags, if(NULL == (mesg = H5MM_calloc(sizeof(H5O_shmesg_table_t)))) HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed for shared message table message") - /* Read version, table address, and number of indexes */ + /* Retrieve version, table address, and number of indexes */ mesg->version = *p++; H5F_addr_decode(f, &p, &(mesg->addr)); mesg->nindexes = *p++; @@ -126,7 +126,7 @@ H5O_shmesg_encode(H5F_t *f, hbool_t UNUSED disable_shared, uint8_t *p, const voi HDassert(p); HDassert(mesg); - /* Read version, table address, and number of indexes */ + /* Store version, table address, and number of indexes */ *p++ = mesg->version; H5F_addr_encode(f, &p, mesg->addr); *p++ = mesg->nindexes; |