summaryrefslogtreecommitdiffstats
path: root/src/H5FDlog.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2021-11-10 04:40:46 (GMT)
committerGitHub <noreply@github.com>2021-11-10 04:40:46 (GMT)
commitb488eb4ecc5397876d43f49a6892aa848ad45bdf (patch)
treea90b43a833ce43c592e7aadd70f0c2b394f26c50 /src/H5FDlog.c
parent25fe28eb044f55d28c2d2cf572b32011eabba00c (diff)
downloadhdf5-b488eb4ecc5397876d43f49a6892aa848ad45bdf.zip
hdf5-b488eb4ecc5397876d43f49a6892aa848ad45bdf.tar.gz
hdf5-b488eb4ecc5397876d43f49a6892aa848ad45bdf.tar.bz2
Fixes FUNC_ENTER warnings in VFDs due to recent init changes (#1178)
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r--src/H5FDlog.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c
index 8ea08bc..4128582 100644
--- a/src/H5FDlog.c
+++ b/src/H5FDlog.c
@@ -243,7 +243,7 @@ H5FD_log_init(void)
char *lock_env_var = NULL; /* Environment variable pointer */
hid_t ret_value = H5I_INVALID_HID; /* Return value */
- FUNC_ENTER_NOAPI(H5I_INVALID_HID)
+ FUNC_ENTER_NOAPI_NOERR
/* Check the use disabled file locks environment variable */
lock_env_var = HDgetenv(HDF5_USE_FILE_LOCKING);
@@ -260,7 +260,6 @@ H5FD_log_init(void)
/* Set return value */
ret_value = H5FD_LOG_g;
-done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_log_init() */