summaryrefslogtreecommitdiffstats
path: root/src/H5HFstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5HFstat.c')
-rw-r--r--src/H5HFstat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5HFstat.c b/src/H5HFstat.c
index 53dbe03..411ad7a 100644
--- a/src/H5HFstat.c
+++ b/src/H5HFstat.c
@@ -132,24 +132,24 @@ H5HF_size(const H5HF_t *fh, hsize_t *heap_size)
if (H5HF__man_iblock_size(hdr->f, hdr, hdr->man_dtable.table_addr, hdr->man_dtable.curr_root_rows,
NULL, 0, heap_size) < 0)
HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL,
- "unable to get fractal heap storage info for indirect block")
+ "unable to get fractal heap storage info for indirect block");
/* Check for B-tree storage of huge objects in fractal heap */
if (H5_addr_defined(hdr->huge_bt2_addr)) {
/* Open the huge object index v2 B-tree */
if (NULL == (bt2 = H5B2_open(hdr->f, hdr->huge_bt2_addr, hdr->f)))
HGOTO_ERROR(H5E_HEAP, H5E_CANTOPENOBJ, FAIL,
- "unable to open v2 B-tree for tracking 'huge' objects")
+ "unable to open v2 B-tree for tracking 'huge' objects");
/* Get the B-tree storage */
if (H5B2_size(bt2, heap_size) < 0)
- HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "can't retrieve B-tree storage info")
+ HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "can't retrieve B-tree storage info");
} /* end if */
/* Get storage for free-space tracking info */
if (H5_addr_defined(hdr->fs_addr)) {
if (H5HF__space_size(hdr, &meta_size) < 0)
- HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "can't retrieve FS meta storage info")
+ HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "can't retrieve FS meta storage info");
*heap_size += meta_size;
} /* end if */