diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-22 02:00:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-22 02:00:40 (GMT) |
commit | 182c05cb95472cae9411169d295a4bcad6f5edd7 (patch) | |
tree | fb1adb87d49a83ed0e10a579dded38144b815135 /src/H5Omessage.c | |
parent | 2468b8aa1c8f07211e86f1ec937c4f7f14e3ddbe (diff) | |
download | hdf5-182c05cb95472cae9411169d295a4bcad6f5edd7.zip hdf5-182c05cb95472cae9411169d295a4bcad6f5edd7.tar.gz hdf5-182c05cb95472cae9411169d295a4bcad6f5edd7.tar.bz2 |
[svn-r13375] Description:
Straighten out some of the code for handling superblocks, in preparation
for revising the format of the latest version of the superblock before the
beta release.
Tested on:
Mac OS X/32 10.4.8 (amazon)
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Omessage.c')
-rw-r--r-- | src/H5Omessage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Omessage.c b/src/H5Omessage.c index 8307b49..a7ecb63 100644 --- a/src/H5Omessage.c +++ b/src/H5Omessage.c @@ -117,7 +117,7 @@ static herr_t H5O_copy_mesg(H5F_t *f, hid_t dxpl_id, H5O_t *oh, unsigned idx, *------------------------------------------------------------------------- */ herr_t -H5O_msg_create(H5O_loc_t *loc, unsigned type_id, unsigned mesg_flags, +H5O_msg_create(const H5O_loc_t *loc, unsigned type_id, unsigned mesg_flags, unsigned update_flags, void *mesg, hid_t dxpl_id) { H5O_t *oh = NULL; /* Object header */ @@ -268,7 +268,7 @@ done: *------------------------------------------------------------------------- */ herr_t -H5O_msg_write(H5O_loc_t *loc, unsigned type_id, unsigned mesg_flags, +H5O_msg_write(const H5O_loc_t *loc, unsigned type_id, unsigned mesg_flags, unsigned update_flags, void *mesg, hid_t dxpl_id) { H5O_t *oh = NULL; /* Object header to use */ |