diff options
Diffstat (limited to 'src/H5HFstat.c')
-rw-r--r-- | src/H5HFstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HFstat.c b/src/H5HFstat.c index 5b07e05..fb535b9 100644 --- a/src/H5HFstat.c +++ b/src/H5HFstat.c @@ -159,7 +159,7 @@ H5HF_size(const H5HF_t *fh, hid_t dxpl_id, hsize_t *heap_size) HGOTO_ERROR(H5E_HEAP, H5E_CANTOPENOBJ, FAIL, "unable to open v2 B-tree for tracking 'huge' objects") /* Get the B-tree storage */ - if(H5B2_iterate_size_2(bt2, dxpl_id, heap_size) < 0) + if(H5B2_size(bt2, dxpl_id, heap_size) < 0) HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "can't retrieve B-tree storage info") } /* end if */ |