diff options
author | github-actions <41898282+github-actions[bot]@users.noreply.github.com> | 2021-10-28 23:15:32 (GMT) |
---|---|---|
committer | github-actions <41898282+github-actions[bot]@users.noreply.github.com> | 2021-10-28 23:15:32 (GMT) |
commit | 40f67b4b19d8f2acb078baf2dcce4af7bedb5d25 (patch) | |
tree | 6ce259a295bd8d98554f6d3aa30ac95300ab8425 /src | |
parent | 65cf226e8ac757d2ae932daeeace6fa821850eb2 (diff) | |
download | hdf5-40f67b4b19d8f2acb078baf2dcce4af7bedb5d25.zip hdf5-40f67b4b19d8f2acb078baf2dcce4af7bedb5d25.tar.gz hdf5-40f67b4b19d8f2acb078baf2dcce4af7bedb5d25.tar.bz2 |
Committing clang-format changes
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Fvfd_swmr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c index e958c52..9586004 100644 --- a/src/H5Fvfd_swmr.c +++ b/src/H5Fvfd_swmr.c @@ -811,7 +811,7 @@ H5F_vfd_swmr_writer_end_of_tick(H5F_t *f, hbool_t wait_for_reader) /* Kent */ /* Obtain the starting time for the logging info: the processing time of this function. */ if (shared->vfd_swmr_log_on == true) { -#ifndef H5_HAVE_WIN32_API +#ifndef H5_HAVE_WIN32_API if (HDclock_gettime(CLOCK_MONOTONIC, &start_time) < 0) HGOTO_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't get time via clock_gettime"); #endif @@ -942,7 +942,7 @@ update_eot: done: /* Kent: Calcuate the processing time and write the time info to the log file */ if (shared->vfd_swmr_log_on == true) { -#ifndef H5_HAVE_WIN32_API +#ifndef H5_HAVE_WIN32_API if (HDclock_gettime(CLOCK_MONOTONIC, &end_time) < 0) HGOTO_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't get time via clock_gettime"); log_msg = HDmalloc(48); @@ -2002,7 +2002,7 @@ H5F_post_vfd_swmr_log_entry(H5F_t *f, int entry_type_code, char *log_info) gettime_error = HDmalloc(22); HDsprintf(gettime_error, "unsupported on windows"); HDfprintf(f->shared->vfd_swmr_log_file_ptr, "%-26s: %s\n", H5Fvfd_swmr_log_tags[entry_type_code], - gettime_error); + gettime_error); HDfree(gettime_error); #endif return; |