summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-11-30 22:41:31 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-11-30 22:41:31 (GMT)
commit5922bbb45f03b0e84c3aef7e1ed1010273caa7e2 (patch)
treea7ae3b7c54458ceffefacc21cb354c2c6d9e5868 /src
parent3d2beeec1fb63c8c2bac4658df382ea7a9d61e05 (diff)
downloadhdf5-5922bbb45f03b0e84c3aef7e1ed1010273caa7e2.zip
hdf5-5922bbb45f03b0e84c3aef7e1ed1010273caa7e2.tar.gz
hdf5-5922bbb45f03b0e84c3aef7e1ed1010273caa7e2.tar.bz2
Minor normalization cleanups.
Diffstat (limited to 'src')
-rw-r--r--src/H5B2pkg.h6
-rw-r--r--src/H5EAiblock.c2
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)