summaryrefslogtreecommitdiffstats
path: root/src/H5B2.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-07-20 18:50:22 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-07-20 18:50:22 (GMT)
commit87748c6a0b5d3aba7cfce54746ebae2f5caeebc6 (patch)
tree4a1847b7e506613050ddaf90f9611c91c5cb1d23 /src/H5B2.c
parent71d4644df239df3ea2f9013d54b93dd68cf9392b (diff)
downloadhdf5-87748c6a0b5d3aba7cfce54746ebae2f5caeebc6.zip
hdf5-87748c6a0b5d3aba7cfce54746ebae2f5caeebc6.tar.gz
hdf5-87748c6a0b5d3aba7cfce54746ebae2f5caeebc6.tar.bz2
[svn-r19113] Description:
Rename H5AC_set() to H5AC_insert_entry() Get rid of H5C_set_skip_flags() & related flags Tested on: Eyeballed only, very simple...
Diffstat (limited to 'src/H5B2.c')
-rw-r--r--src/H5B2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5B2.c b/src/H5B2.c
index dd182fb..bda3643 100644
--- a/src/H5B2.c
+++ b/src/H5B2.c
@@ -138,7 +138,7 @@ H5B2_create(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "file allocation failed for B-tree header")
/* Cache the new B-tree node */
- if(H5AC_set(f, dxpl_id, H5AC_BT2_HDR, *addr_p, bt2, H5AC__NO_FLAGS_SET) < 0)
+ if(H5AC_insert_entry(f, dxpl_id, H5AC_BT2_HDR, *addr_p, bt2, H5AC__NO_FLAGS_SET) < 0)
HGOTO_ERROR(H5E_BTREE, H5E_CANTINIT, FAIL, "can't add B-tree header to cache")
done: