summaryrefslogtreecommitdiffstats
path: root/src/H5L.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-05-21 14:23:57 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-05-21 14:23:57 (GMT)
commit41c42d25f36519afdb603abf6c3ca76e39b20435 (patch)
tree8b248ef5992bbd21029fd3bfbd297c8f6a8d4aa7 /src/H5L.c
parent748b630b2b0451f7305918d25244e5a5fddc1f11 (diff)
downloadhdf5-41c42d25f36519afdb603abf6c3ca76e39b20435.zip
hdf5-41c42d25f36519afdb603abf6c3ca76e39b20435.tar.gz
hdf5-41c42d25f36519afdb603abf6c3ca76e39b20435.tar.bz2
[svn-r22384] - fix type in CMake file
- rename delete callback to remove
Diffstat (limited to 'src/H5L.c')
-rw-r--r--src/H5L.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5L.c b/src/H5L.c
index 301fe11..e0c5f9c 100644
--- a/src/H5L.c
+++ b/src/H5L.c
@@ -600,7 +600,7 @@ H5Ldelete(hid_t loc_id, const char *name, hid_t lapl_id)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name")
/* Delete the link through the VOL */
- if((ret_value = H5VL_link_delete(loc_id, name, NULL, lapl_id, H5_REQUEST_NULL)) < 0)
+ if((ret_value = H5VL_link_remove(loc_id, name, NULL, lapl_id, H5_REQUEST_NULL)) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to create link")
done:
@@ -657,7 +657,7 @@ H5Ldelete_by_idx(hid_t loc_id, const char *group_name,
udata.dxpl_id = H5AC_dxpl_id;
/* Delete the link through the VOL */
- if((ret_value = H5VL_link_delete(loc_id, group_name, &udata, lapl_id, H5_REQUEST_NULL)) < 0)
+ if((ret_value = H5VL_link_remove(loc_id, group_name, &udata, lapl_id, H5_REQUEST_NULL)) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to create link")
done: