summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-02-27 16:59:07 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-02-27 16:59:07 (GMT)
commitc7c014d4cd9039ad986197e627635978a72b4584 (patch)
tree95c3a63bd838c1b60131a3553eac28a3b243860f /src
parent847c285c61eeb11ab83f9624b680421bd06c6747 (diff)
downloadhdf5-c7c014d4cd9039ad986197e627635978a72b4584.zip
hdf5-c7c014d4cd9039ad986197e627635978a72b4584.tar.gz
hdf5-c7c014d4cd9039ad986197e627635978a72b4584.tar.bz2
Updated the H5L.c error message after additional thought.
Fix for HDFFV-10141.
Diffstat (limited to 'src')
-rw-r--r--src/H5L.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5L.c b/src/H5L.c
index 8e59762..a4c1022 100644
--- a/src/H5L.c
+++ b/src/H5L.c
@@ -2296,7 +2296,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)