summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2021-02-27 05:25:35 (GMT)
committerGitHub <noreply@github.com>2021-02-27 05:25:35 (GMT)
commitae9b4026a956f2ece490a10497b3ff7e4435de9e (patch)
treeffa9b9f091cf07f9279e8b3803ceb8a214d8043b
parent216bff577826e52268d1c7db632753444a846528 (diff)
downloadhdf5-ae9b4026a956f2ece490a10497b3ff7e4435de9e.zip
hdf5-ae9b4026a956f2ece490a10497b3ff7e4435de9e.tar.gz
hdf5-ae9b4026a956f2ece490a10497b3ff7e4435de9e.tar.bz2
fixed error message typo (#401)
* fixed missed closing of a dataset * fixed missed closing of a dataset * fixed typo in error return
-rw-r--r--src/H5L.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5L.c b/src/H5L.c
index 171c128..982813b 100644
--- a/src/H5L.c
+++ b/src/H5L.c
@@ -1763,7 +1763,7 @@ H5Literate2(hid_t group_id, H5_index_t idx_type, H5_iter_order_t order, hsize_t
/* Iterate over links synchronously */
if ((ret_value = H5L__iterate_api_common(group_id, idx_type, order, idx_p, op, op_data, NULL, NULL)) < 0)
- HGOTO_ERROR(H5E_LINK, H5E_BADITER, FAIL, "asynchronous link iteration failed")
+ HGOTO_ERROR(H5E_LINK, H5E_BADITER, FAIL, "synchronous link iteration failed")
done:
FUNC_LEAVE_API(ret_value)