diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-03 15:29:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-03 15:29:41 (GMT) |
commit | 9f39e59d913b10429bc64fb0497cfaa02d256c51 (patch) | |
tree | 187ce3e49fe13475dbce4a588b174c088f54b7e4 /src/H5Gcompact.c | |
parent | cf925456704a232e626377f33b890461b9aa6b6d (diff) | |
download | hdf5-9f39e59d913b10429bc64fb0497cfaa02d256c51.zip hdf5-9f39e59d913b10429bc64fb0497cfaa02d256c51.tar.gz hdf5-9f39e59d913b10429bc64fb0497cfaa02d256c51.tar.bz2 |
[svn-r13012] Description:
Refactor object header code to separate process of creating an object
header message from the process of writing to an existing one.
Start renaming operations that deal with object header messages to have
"H5O_msg_" prefix...
Tested on:
Mac OS X/32 10.4.8 (amazon)
FreeBSD/32 4.11 (sleipnir)
Linux/32 2.4 (heping)
AIX/32 5.? (copper)
Diffstat (limited to 'src/H5Gcompact.c')
-rw-r--r-- | src/H5Gcompact.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gcompact.c b/src/H5Gcompact.c index 7e7266a..e321155 100644 --- a/src/H5Gcompact.c +++ b/src/H5Gcompact.c @@ -194,7 +194,7 @@ H5G_compact_insert(H5O_loc_t *grp_oloc, H5O_link_t *obj_lnk, HDassert(obj_lnk); /* Insert link message into group */ - if(H5O_modify(grp_oloc, H5O_LINK_ID, H5O_NEW_MESG, 0, H5O_UPDATE_TIME, obj_lnk, dxpl_id) < 0) + if(H5O_msg_create(grp_oloc, H5O_LINK_ID, 0, H5O_UPDATE_TIME, obj_lnk, dxpl_id) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't create message") done: |