diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-09-18 21:10:14 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-09-18 21:10:14 (GMT) |
commit | 680cf4d946fd10d50e0f7acdc5bc93f91037fb4f (patch) | |
tree | 263471c227cce53ce2803e3f91de63c7ec70168c /src/H5Fefc.c | |
parent | fbf837eac31d510ecc8eaa65ea489ae180cde15f (diff) | |
download | hdf5-680cf4d946fd10d50e0f7acdc5bc93f91037fb4f.zip hdf5-680cf4d946fd10d50e0f7acdc5bc93f91037fb4f.tar.gz hdf5-680cf4d946fd10d50e0f7acdc5bc93f91037fb4f.tar.bz2 |
Removed 'VOL' versions of FUNC_ENTER macros as well as empty functions
orginally intended to support the full SWMR feature.
Diffstat (limited to 'src/H5Fefc.c')
-rw-r--r-- | src/H5Fefc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fefc.c b/src/H5Fefc.c index 07bb644..a394071 100644 --- a/src/H5Fefc.c +++ b/src/H5Fefc.c @@ -481,7 +481,7 @@ H5F__efc_release(H5F_efc_t *efc) { herr_t ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_PACKAGE_VOL + FUNC_ENTER_PACKAGE /* Sanity checks */ HDassert(efc); @@ -491,7 +491,7 @@ H5F__efc_release(H5F_efc_t *efc) HGOTO_ERROR(H5E_FILE, H5E_CANTRELEASE, FAIL, "can't remove entry from external file cache") done: - FUNC_LEAVE_NOAPI_VOL(ret_value) + FUNC_LEAVE_NOAPI(ret_value) } /* end H5F_efc_release() */ |