diff options
author | Quincey Koziol <koziol@lbl.gov> | 2020-08-07 15:06:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@lbl.gov> | 2020-08-07 15:06:34 (GMT) |
commit | a2340cec3b1ff84e991b4e8d54a5e358a38831fe (patch) | |
tree | bb49b22a1ea2e6edf8a379c4e13438d170937696 /src/H5FDfamily.c | |
parent | 8fe3cece3c671453e4c49f22fde9d7635c08f031 (diff) | |
parent | 51ab52ad4298913d18d1f8c3be7e2c2a410c58a8 (diff) | |
download | hdf5-a2340cec3b1ff84e991b4e8d54a5e358a38831fe.zip hdf5-a2340cec3b1ff84e991b4e8d54a5e358a38831fe.tar.gz hdf5-a2340cec3b1ff84e991b4e8d54a5e358a38831fe.tar.bz2 |
Merge remote-tracking branch 'origin/develop' into namespace_cleanup_01
Diffstat (limited to 'src/H5FDfamily.c')
-rw-r--r-- | src/H5FDfamily.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c index aa604c2..290d743 100644 --- a/src/H5FDfamily.c +++ b/src/H5FDfamily.c @@ -1328,9 +1328,9 @@ H5FD__family_lock(H5FD_t *_file, hbool_t rw) for(v = 0; v < u; v++) { if(H5FD_unlock(file->memb[v]) < 0) /* Push error, but keep going */ - HDONE_ERROR(H5E_IO, H5E_CANTUNLOCK, FAIL, "unable to unlock member files") + HDONE_ERROR(H5E_IO, H5E_CANTUNLOCKFILE, FAIL, "unable to unlock member files") } /* end for */ - HGOTO_ERROR(H5E_IO, H5E_CANTLOCK, FAIL, "unable to lock member files") + HGOTO_ERROR(H5E_IO, H5E_CANTLOCKFILE, FAIL, "unable to lock member files") } /* end if */ done: @@ -1362,7 +1362,7 @@ H5FD__family_unlock(H5FD_t *_file) for(u = 0; u < file->nmembs; u++) if(file->memb[u]) if(H5FD_unlock(file->memb[u]) < 0) - HGOTO_ERROR(H5E_IO, H5E_CANTUNLOCK, FAIL, "unable to unlock member files") + HGOTO_ERROR(H5E_IO, H5E_CANTUNLOCKFILE, FAIL, "unable to unlock member files") done: FUNC_LEAVE_NOAPI(ret_value) |