diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-02-27 16:59:07 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-04-05 06:26:36 (GMT) |
commit | 9876155d3fdb073dd3769f18665c86d04cda4806 (patch) | |
tree | d93f48889fc0cdec19b1bf4ff4d82afcf536e3d1 /src/H5L.c | |
parent | 2e295975b9c5fd4c845529aa2eacdb89eec4c172 (diff) | |
download | hdf5-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |