summaryrefslogtreecommitdiffstats
path: root/src/H5MF.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-08-21 20:34:43 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-08-21 20:34:43 (GMT)
commit0b85fa6004cb96d222329614fa446b98cfcc06ea (patch)
tree68b1a9da1bbb6eff07d77d6dab0103aaad6a493e /src/H5MF.c
parentd3545afbc5dc1c81616ff87d6667a45bbb6ce7a8 (diff)
downloadhdf5-0b85fa6004cb96d222329614fa446b98cfcc06ea.zip
hdf5-0b85fa6004cb96d222329614fa446b98cfcc06ea.tar.gz
hdf5-0b85fa6004cb96d222329614fa446b98cfcc06ea.tar.bz2
Small tidy up.
Diffstat (limited to 'src/H5MF.c')
-rw-r--r--src/H5MF.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/H5MF.c b/src/H5MF.c
index a197979..0ee26c1 100644
--- a/src/H5MF.c
+++ b/src/H5MF.c
@@ -3342,29 +3342,27 @@ H5MF__continue_alloc_fsm(H5F_file_t *f_sh, H5FS_t *sm_hdr_fspace, H5FS_t *sm_sin
/* Check sm_hdr_fspace */
if(sm_hdr_fspace && sm_hdr_fspace->serial_sect_count > 0 && sm_hdr_fspace->sinfo) {
H5MF_CHECK_FSM(sm_hdr_fspace, continue_alloc_fsm);
- }
+ } /* end if */
- if(!(*continue_alloc_fsm)) {
+ if(!(*continue_alloc_fsm))
if(sm_sinfo_fspace && sm_sinfo_fspace != sm_hdr_fspace &&
sm_sinfo_fspace->serial_sect_count > 0 && sm_sinfo_fspace->sinfo) {
H5MF_CHECK_FSM(sm_hdr_fspace, continue_alloc_fsm);
- }
- }
+ } /* end if */
if(H5F_SHARED_PAGED_AGGR(f_sh) && !(*continue_alloc_fsm)) {
/* Check lg_hdr_fspace */
if(lg_hdr_fspace && lg_hdr_fspace->serial_sect_count > 0 && lg_hdr_fspace->sinfo) {
H5MF_CHECK_FSM(lg_hdr_fspace, continue_alloc_fsm);
- }
+ } /* end if */
/* Check lg_sinfo_fspace */
- if(!(*continue_alloc_fsm)) {
+ if(!(*continue_alloc_fsm))
if(lg_sinfo_fspace && lg_sinfo_fspace != lg_hdr_fspace &&
- lg_sinfo_fspace->serial_sect_count > 0 && lg_sinfo_fspace->sinfo) {
+ lg_sinfo_fspace->serial_sect_count > 0 && lg_sinfo_fspace->sinfo) {
H5MF_CHECK_FSM(lg_sinfo_fspace, continue_alloc_fsm);
- }
- }
- }
+ } /* end if */
+ } /* end if */
FUNC_LEAVE_NOAPI(SUCCEED)
} /* H5MF__continue_alloc_fsm() */