summaryrefslogtreecommitdiffstats
path: root/src/H5MF.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-06-07 10:12:36 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-06-07 10:12:36 (GMT)
commit87695c999ad7ea348ee6dc03b46b0bd345f7d7df (patch)
tree91dac228fd01ace80b8c6a9cef746ced880c27df /src/H5MF.c
parent8a2c6d868b70c56622e65cb46e163d2856e1098e (diff)
downloadhdf5-87695c999ad7ea348ee6dc03b46b0bd345f7d7df.zip
hdf5-87695c999ad7ea348ee6dc03b46b0bd345f7d7df.tar.gz
hdf5-87695c999ad7ea348ee6dc03b46b0bd345f7d7df.tar.bz2
Minor normalizations with HDF5 1.10.
Diffstat (limited to 'src/H5MF.c')
-rw-r--r--src/H5MF.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5MF.c b/src/H5MF.c
index 5c31f19..fac6620 100644
--- a/src/H5MF.c
+++ b/src/H5MF.c
@@ -1137,10 +1137,11 @@ HDfprintf(stderr, "%s: Entering - alloc_type = %u, addr = %a, size = %Hu\n", FUN
/* If it's metadata, check if the space to free intersects with the file's
* metadata accumulator
*/
- if(H5FD_MEM_DRAW != alloc_type)
+ if(H5FD_MEM_DRAW != alloc_type) {
/* Check if the space to free intersects with the file's metadata accumulator */
if(H5F__accum_free(f->shared, alloc_type, addr, size) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "can't check free space intersection w/metadata accumulator")
+ } /* end if */
/* Check if the free space manager for the file has been initialized */
if(!f->shared->fs_man[fs_type]) {