summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_file.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-05-05 02:01:23 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-05-05 02:01:23 (GMT)
commit8e27e7357506958128d087c4e93e3dcb4fb52ace (patch)
treeaacca527aede81daddad6707c2f9346fc933a773 /src/H5VLnative_file.c
parent16eda679e306fde7fec41f5ff1910be86645e745 (diff)
downloadhdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.zip
hdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.tar.gz
hdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.tar.bz2
Brings atom-->ID and other ID-related changes from develop
Diffstat (limited to 'src/H5VLnative_file.c')
-rw-r--r--src/H5VLnative_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5VLnative_file.c b/src/H5VLnative_file.c
index 8a8bfc2..55cd1db 100644
--- a/src/H5VLnative_file.c
+++ b/src/H5VLnative_file.c
@@ -847,11 +847,11 @@ H5VL__native_file_close(void *file, hid_t H5_ATTR_UNUSED dxpl_id, void H5_ATTR_U
if ((H5F_NREFS(f) > 1) && (H5F_INTENT(f) & H5F_ACC_RDWR)) {
/* Get the file ID corresponding to the H5F_t struct */
if (H5I_find_id(f, H5I_FILE, &file_id) < 0 || H5I_INVALID_HID == file_id)
- HGOTO_ERROR(H5E_ATOM, H5E_CANTGET, FAIL, "invalid atom")
+ HGOTO_ERROR(H5E_ID, H5E_CANTGET, FAIL, "invalid ID")
/* Get the number of references outstanding for this file ID */
if ((nref = H5I_get_ref(file_id, FALSE)) < 0)
- HGOTO_ERROR(H5E_ATOM, H5E_CANTGET, FAIL, "can't get ID ref count")
+ HGOTO_ERROR(H5E_ID, H5E_CANTGET, FAIL, "can't get ID ref count")
if (nref == 1)
if (H5F__flush(f) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTFLUSH, FAIL, "unable to flush cache")