summaryrefslogtreecommitdiffstats
path: root/src/H5L.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-02-27 16:59:07 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-04-05 06:26:36 (GMT)
commit9876155d3fdb073dd3769f18665c86d04cda4806 (patch)
treed93f48889fc0cdec19b1bf4ff4d82afcf536e3d1 /src/H5L.c
parent2e295975b9c5fd4c845529aa2eacdb89eec4c172 (diff)
downloadhdf5-9876155d3fdb073dd3769f18665c86d04cda4806.zip
hdf5-9876155d3fdb073dd3769f18665c86d04cda4806.tar.gz
hdf5-9876155d3fdb073dd3769f18665c86d04cda4806.tar.bz2
Updated the H5L.c error message after additional thought.
Fix for HDFFV-10141.
Diffstat (limited to 'src/H5L.c')
-rw-r--r--src/H5L.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5L.c b/src/H5L.c
index f933e97..ecdf8a2 100644
--- a/src/H5L.c
+++ b/src/H5L.c
@@ -2355,7 +2355,7 @@ H5L_delete_cb(H5G_loc_t *grp_loc/*in*/, const char *name, const H5O_link_t *lnk,
* Note that this can also occur when attempting to remove '.'
*/
if(lnk == NULL)
- HGOTO_ERROR(H5E_SYM, H5E_CANTDELETE, FAIL, "callback link pointer is NULL")
+ HGOTO_ERROR(H5E_SYM, H5E_CANTDELETE, FAIL, "callback link pointer is NULL (specified link may be '.' or not exist)")
/* Remove the link from the group */
if(H5G_obj_remove(grp_loc->oloc, grp_loc->path->full_path_r, name, udata->dxpl_id) < 0)