summaryrefslogtreecommitdiffstats
path: root/src/H5Gdeprec.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/H5Gdeprec.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/H5Gdeprec.c')
-rw-r--r--src/H5Gdeprec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gdeprec.c b/src/H5Gdeprec.c
index 0873c37..2b3a9e6 100644
--- a/src/H5Gdeprec.c
+++ b/src/H5Gdeprec.c
@@ -604,7 +604,7 @@ H5Gunlink(hid_t loc_id, const char *name)
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, H5P_DEFAULT, H5_REQUEST_NULL)) < 0)
+ if((ret_value = H5VL_link_remove(loc_id, name, NULL, H5P_DEFAULT, H5_REQUEST_NULL)) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to create link")
done: