summaryrefslogtreecommitdiffstats
path: root/src/H5MF.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-05-19 15:29:04 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:37:21 (GMT)
commit25585400e610c7a358af6ed564ef5938749ba9fd (patch)
treef23359cb3cb82f0c7326d142e206f17de6a8b5e6 /src/H5MF.c
parent3de98efff8f3a642afddfe485c1f7bc0c10a7a5e (diff)
downloadhdf5-25585400e610c7a358af6ed564ef5938749ba9fd.zip
hdf5-25585400e610c7a358af6ed564ef5938749ba9fd.tar.gz
hdf5-25585400e610c7a358af6ed564ef5938749ba9fd.tar.bz2
Repair a bunch of H5_ATTR_SANITY_CHECK uses that should have been
H5_ATTR_NDEBUG_UNUSED. This really makes me wonder what else I have screwed up in this merge....
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 a7112b1..c320f2c 100644
--- a/src/H5MF.c
+++ b/src/H5MF.c
@@ -83,6 +83,7 @@ typedef struct {
size_t sect_idx; /* the current count of sections */
} H5MF_sect_iter_ud_t;
+
/********************/
/* Package Typedefs */
/********************/
@@ -2454,7 +2455,7 @@ H5MF_get_freespace(H5F_t *f, hsize_t *tot_space, hsize_t *meta_size)
/* Retrieve free space size from free space manager */
if(H5FS_sect_stats(f->shared->fs_man[type], &type_fs_size, NULL) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTGET, FAIL, "can't query free space stats")
- if(H5FS_size(f, f->shared->fs_man[type], &type_meta_size) < 0)
+ if(H5FS_size(f->shared->fs_man[type], &type_meta_size) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTGET, FAIL, "can't query free space metadata stats")
/* Increment total free space for types */