summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.c
diff options
context:
space:
mode:
authorgithub-actions <41898282+github-actions[bot]@users.noreply.github.com>2021-10-18 21:25:39 (GMT)
committergithub-actions <41898282+github-actions[bot]@users.noreply.github.com>2021-10-18 21:25:39 (GMT)
commitcbf5ca9147e229373d8ee75df3f60d1f01211b2a (patch)
tree9166ba6252e8727210f92551ed153777fbfcee38 /src/H5Fint.c
parenta9670aaa117d7be70c2039bf0fcb7c12104c6ea3 (diff)
downloadhdf5-cbf5ca9147e229373d8ee75df3f60d1f01211b2a.zip
hdf5-cbf5ca9147e229373d8ee75df3f60d1f01211b2a.tar.gz
hdf5-cbf5ca9147e229373d8ee75df3f60d1f01211b2a.tar.bz2
Committing clang-format changes
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index 9d739b7..a50c38c 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -2017,12 +2017,12 @@ H5F_open(const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id)
if (vfd_swmr_config_ptr->version) {
if (HDstrlen(vfd_swmr_config_ptr->log_file_path) > 0)
- shared->vfd_swmr_log_on = TRUE;
+ shared->vfd_swmr_log_on = TRUE;
if (TRUE == shared->vfd_swmr_log_on) {
/* Create the log file */
- if ((shared->vfd_swmr_log_file_ptr = HDfopen(vfd_swmr_config_ptr->log_file_path,"w"))==NULL)
+ if ((shared->vfd_swmr_log_file_ptr = HDfopen(vfd_swmr_config_ptr->log_file_path, "w")) == NULL)
HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, "unable to create the log file")
- if(HDclock_gettime(CLOCK_MONOTONIC, &(shared->vfd_swmr_log_start_time))<0)
+ if (HDclock_gettime(CLOCK_MONOTONIC, &(shared->vfd_swmr_log_start_time)) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTGET, NULL, "can't get time via clock_gettime");
}
}
@@ -2237,7 +2237,7 @@ done:
}
#if 1 /*KENT*/
H5F_post_vfd_swrm_log_entry(file, 0, "File open ends");
-#endif
+#endif
if (vfd_swmr_config_ptr)
H5MM_free(vfd_swmr_config_ptr);