summaryrefslogtreecommitdiffstats
path: root/src/H5B2int.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-12-19 21:27:15 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-12-19 21:27:15 (GMT)
commit0016ea927f7474e642c43a8e652033fe00dec828 (patch)
treee2b24b6a6c7587f981893636165a314b9d942ce2 /src/H5B2int.c
parenteacff80a4e47433ffa9e88fea934b78284d93df8 (diff)
downloadhdf5-0016ea927f7474e642c43a8e652033fe00dec828.zip
hdf5-0016ea927f7474e642c43a8e652033fe00dec828.tar.gz
hdf5-0016ea927f7474e642c43a8e652033fe00dec828.tar.bz2
[svn-r28712] Description:
Switch v2 B-trees to use the same mechanism for setting up flush dependencies as extensible and fixed arrays. Tested on: MacOSX/64 10.11.2 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'src/H5B2int.c')
-rw-r--r--src/H5B2int.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5B2int.c b/src/H5B2int.c
index f7927db..a33b8c3 100644
--- a/src/H5B2int.c
+++ b/src/H5B2int.c
@@ -3410,7 +3410,7 @@ H5B2__remove_internal_by_idx(H5B2_hdr_t *hdr, hid_t dxpl_id,
hbool_t *depth_decreased, void *swap_loc, void *swap_parent, uint16_t depth,
H5AC_info_t *parent_cache_info, unsigned *parent_cache_info_flags_ptr,
H5B2_node_ptr_t *curr_node_ptr, H5B2_nodepos_t curr_pos, hsize_t n,
- void *udata, H5B2_remove_t op, void *op_data)
+ H5B2_remove_t op, void *op_data)
{
H5AC_info_t *new_cache_info; /* Pointer to new cache info */
unsigned *new_cache_info_flags_ptr = NULL;
@@ -3702,7 +3702,7 @@ H5B2__remove_internal_by_idx(H5B2_hdr_t *hdr, hid_t dxpl_id,
/* Attempt to remove record from child node */
if(depth > 1) {
if(H5B2__remove_internal_by_idx(hdr, dxpl_id, depth_decreased, swap_loc, swap_parent, (uint16_t)(depth - 1),
- new_cache_info, new_cache_info_flags_ptr, new_node_ptr, next_pos, n, udata, op, op_data) < 0)
+ new_cache_info, new_cache_info_flags_ptr, new_node_ptr, next_pos, n, op, op_data) < 0)
HGOTO_ERROR(H5E_BTREE, H5E_CANTDELETE, FAIL, "unable to remove record from B-tree internal node")
} /* end if */
else {