summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions <41898282+github-actions[bot]@users.noreply.github.com>2021-12-21 18:31:29 (GMT)
committergithub-actions <41898282+github-actions[bot]@users.noreply.github.com>2021-12-21 18:31:29 (GMT)
commit2d6db3afdcce83beff7b62237c873fde85a7ba6a (patch)
tree1f942d87f31f4ca711c5847133238945cc8e332f
parentcdc93ea7faa30084c6399b1a7cc5347e5654f860 (diff)
downloadhdf5-2d6db3afdcce83beff7b62237c873fde85a7ba6a.zip
hdf5-2d6db3afdcce83beff7b62237c873fde85a7ba6a.tar.gz
hdf5-2d6db3afdcce83beff7b62237c873fde85a7ba6a.tar.bz2
Committing clang-format changes
-rw-r--r--src/H5AC.c2
-rw-r--r--src/H5Fvfd_swmr.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 7e1f19b..e89c22d 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -2799,7 +2799,7 @@ H5AC_set_vfd_swmr_reader(H5AC_t *cache_ptr, hbool_t vfd_swmr_reader, hsize_t pag
/* Sanity checks */
HDassert(cache_ptr);
- if(cache_ptr->page_size != page_size) {
+ if (cache_ptr->page_size != page_size) {
if (H5C_set_vfd_swmr_reader((H5C_t *)cache_ptr, vfd_swmr_reader, page_size) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTSET, FAIL, "can't set page_size for VFD SWMR reader")
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c
index 1a8f127..d70d35c 100644
--- a/src/H5Fvfd_swmr.c
+++ b/src/H5Fvfd_swmr.c
@@ -255,14 +255,14 @@ H5F_vfd_swmr_init(H5F_t *f, hbool_t file_create)
HDassert(shared->fs_page_size > 0);
/* This is a bug uncovered by issue #3 of the group test failures.
* See Kent's documentation "Designed to Fail Tests and Issues".
- * The file opening process in H5F__new() initializes the cache copy of
- * page_size via H5AC_create(). However, later on H5F__super_read()
- * may change page size due to non-default setting of
+ * The file opening process in H5F__new() initializes the cache copy of
+ * page_size via H5AC_create(). However, later on H5F__super_read()
+ * may change page size due to non-default setting of
* 'free-space manager info' in superblock extension.
- * Fix: set the cache copy of page_size again if different from
+ * Fix: set the cache copy of page_size again if different from
* f->shared->fs_page_size.
*/
- if(shared->cache) {
+ if (shared->cache) {
if (H5AC_set_vfd_swmr_reader(shared->cache, TRUE, shared->fs_page_size) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTSET, FAIL, "can't set page size in cache for VFD SWMR reader");
}
@@ -1273,7 +1273,7 @@ H5F_vfd_swmr_reader_end_of_tick(H5F_t *f, hbool_t entering_api)
#if 0 /*Kent*/
HDassert(oent->length == nent->length);
#endif
- /* This is a bug uncovered by issue #1 of the
+ /* This is a bug uncovered by issue #1 of the
* group test failures. See Kent's documentation
* "Designed to Fail Tests and Issues".
* nent->length can be <, =, > to oent->length.