summaryrefslogtreecommitdiffstats
path: root/src/H5FDcore.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-10-19 14:40:33 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-10-19 14:40:33 (GMT)
commitc22c52232760662a09d3047bc3b1973a99b1039b (patch)
treeb97f08a63e34b16b50c6c2c7fd0a1b966123ff74 /src/H5FDcore.c
parent72f5f74b67f72364b9c5b23e9d0c3ad69b1eb19b (diff)
downloadhdf5-c22c52232760662a09d3047bc3b1973a99b1039b.zip
hdf5-c22c52232760662a09d3047bc3b1973a99b1039b.tar.gz
hdf5-c22c52232760662a09d3047bc3b1973a99b1039b.tar.bz2
Mostly whitespace - reorder of inits.
Diffstat (limited to 'src/H5FDcore.c')
-rw-r--r--src/H5FDcore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FDcore.c b/src/H5FDcore.c
index 386a418..791deb2 100644
--- a/src/H5FDcore.c
+++ b/src/H5FDcore.c
@@ -277,13 +277,13 @@ H5FD__core_add_dirty_region(H5FD_core_t *file, haddr_t start, haddr_t end)
else {
/* Store the new item endpoint if it's bigger */
item->end = (item->end < end) ? end : item->end;
- } /* end else */
- } /* end if */
+ }
+ }
else {
/* Update the size of the before region */
if (b_item->end < end)
b_item->end = end;
- } /* end else */
+ }
done:
FUNC_LEAVE_NOAPI(ret_value)