diff options
author | github-actions <41898282+github-actions[bot]@users.noreply.github.com> | 2021-12-21 18:31:29 (GMT) |
---|---|---|
committer | github-actions <41898282+github-actions[bot]@users.noreply.github.com> | 2021-12-21 18:31:29 (GMT) |
commit | 2d6db3afdcce83beff7b62237c873fde85a7ba6a (patch) | |
tree | 1f942d87f31f4ca711c5847133238945cc8e332f /src/H5Fvfd_swmr.c | |
parent | cdc93ea7faa30084c6399b1a7cc5347e5654f860 (diff) | |
download | hdf5-2d6db3afdcce83beff7b62237c873fde85a7ba6a.zip hdf5-2d6db3afdcce83beff7b62237c873fde85a7ba6a.tar.gz hdf5-2d6db3afdcce83beff7b62237c873fde85a7ba6a.tar.bz2 |
Committing clang-format changes
Diffstat (limited to 'src/H5Fvfd_swmr.c')
-rw-r--r-- | src/H5Fvfd_swmr.c | 12 |
1 files changed, 6 insertions, 6 deletions
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. |