From 5922bbb45f03b0e84c3aef7e1ed1010273caa7e2 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 30 Nov 2016 14:41:31 -0800 Subject: Minor normalization cleanups. --- src/H5B2pkg.h | 6 +++--- src/H5EAiblock.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/H5B2pkg.h b/src/H5B2pkg.h index 6a385d4..71700fe 100644 --- a/src/H5B2pkg.h +++ b/src/H5B2pkg.h @@ -236,14 +236,14 @@ typedef enum H5B2_update_status_t { H5B2_UPDATE_INSERT_CHILD_FULL /* Update will insert record, but child is full */ } H5B2_update_status_t; -/* Callback info for loading a free space header into the cache */ +/* Callback info for loading a v2 B-tree header into the cache */ typedef struct H5B2_hdr_cache_ud_t { H5F_t *f; /* File that v2 b-tree header is within */ haddr_t addr; /* Address of B-tree header in the file */ void *ctx_udata; /* User-data for protecting */ } H5B2_hdr_cache_ud_t; -/* Callback info for loading a free space internal node into the cache */ +/* Callback info for loading a v2 B-tree internal node into the cache */ typedef struct H5B2_internal_cache_ud_t { H5F_t *f; /* File that v2 b-tree header is within */ H5B2_hdr_t *hdr; /* v2 B-tree header */ @@ -251,7 +251,7 @@ typedef struct H5B2_internal_cache_ud_t { uint16_t depth; /* Depth of node to load */ } H5B2_internal_cache_ud_t; -/* Callback info for loading a free space leaf node into the cache */ +/* Callback info for loading a v2 B-tree leaf node into the cache */ typedef struct H5B2_leaf_cache_ud_t { H5F_t *f; /* File that v2 b-tree header is within */ H5B2_hdr_t *hdr; /* v2 B-tree header */ diff --git a/src/H5EAiblock.c b/src/H5EAiblock.c index 623ae30..48b52a4 100644 --- a/src/H5EAiblock.c +++ b/src/H5EAiblock.c @@ -254,7 +254,7 @@ CATCH if(iblock) { /* Release index block's disk space */ if(H5F_addr_defined(iblock->addr) && H5MF_xfree(hdr->f, H5FD_MEM_EARRAY_IBLOCK, dxpl_id, iblock->addr, (hsize_t)iblock->size) < 0) - H5E_THROW(H5E_CANTFREE, "unable to release extensible array index block") + H5E_THROW(H5E_CANTFREE, "unable to release file space for extensible array index block") /* Destroy index block */ if(H5EA__iblock_dest(iblock) < 0) -- cgit v0.12