diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-07-20 18:52:37 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-07-20 18:52:37 (GMT) |
commit | 9e76314bb7b1edca9ed92eae6ae298f6e73cb485 (patch) | |
tree | a88135396b882102da744e7533d18a4f5a2d5301 /src/H5Ocopy.c | |
parent | c5b81d49b5864fa5e1107204a05611fa46726a10 (diff) | |
download | hdf5-9e76314bb7b1edca9ed92eae6ae298f6e73cb485.zip hdf5-9e76314bb7b1edca9ed92eae6ae298f6e73cb485.tar.gz hdf5-9e76314bb7b1edca9ed92eae6ae298f6e73cb485.tar.bz2 |
[svn-r19115] Description:
Rename H5AC_set() to H5AC_insert_entry()
Get rid of H5C_set_skip_flags() & related flags
Tested on:
Mac OS X/32 10.6.4 (amazon) w/debug
(too simple to require h5committest)
Diffstat (limited to 'src/H5Ocopy.c')
-rw-r--r-- | src/H5Ocopy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index 08ee56b..2238be2 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -728,7 +728,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, } /* end if */ /* Insert destination object header in cache */ - if(H5AC_set(oloc_dst->file, dxpl_id, H5AC_OHDR, oloc_dst->addr, oh_dst, H5AC__NO_FLAGS_SET) < 0) + if(H5AC_insert_entry(oloc_dst->file, dxpl_id, H5AC_OHDR, oloc_dst->addr, oh_dst, H5AC__NO_FLAGS_SET) < 0) HGOTO_ERROR(H5E_OHDR, H5E_CANTINSERT, FAIL, "unable to cache object header") oh_dst = NULL; |