diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-02-27 16:59:07 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-02-27 16:59:07 (GMT) |
commit | c7c014d4cd9039ad986197e627635978a72b4584 (patch) | |
tree | 95c3a63bd838c1b60131a3553eac28a3b243860f | |
parent | 847c285c61eeb11ab83f9624b680421bd06c6747 (diff) | |
download | hdf5-c7c014d4cd9039ad986197e627635978a72b4584.zip hdf5-c7c014d4cd9039ad986197e627635978a72b4584.tar.gz hdf5-c7c014d4cd9039ad986197e627635978a72b4584.tar.bz2 |
Updated the H5L.c error message after additional thought.
Fix for HDFFV-10141.
-rw-r--r-- | src/H5L.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |