diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2024-01-26 15:58:58 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2024-02-14 21:25:45 (GMT) |
commit | 7e7ea3b30ae5d7bf8d4b50092f2d0abd7052bd65 (patch) | |
tree | bfdf1b658d1c205096cfbb978083ece9d48b1954 /src | |
parent | 6d10fa1ba1fd541f96b8ed30dc99fd1e336713f4 (diff) | |
download | hdf5-7e7ea3b30ae5d7bf8d4b50092f2d0abd7052bd65.zip hdf5-7e7ea3b30ae5d7bf8d4b50092f2d0abd7052bd65.tar.gz hdf5-7e7ea3b30ae5d7bf8d4b50092f2d0abd7052bd65.tar.bz2 |
Change 'extensible' to 'fixed' in H5FA code (#3964)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FAcache.c | 2 | ||||
-rw-r--r-- | src/H5FAhdr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FAcache.c b/src/H5FAcache.c index 6d9e22e..5aa06f6 100644 --- a/src/H5FAcache.c +++ b/src/H5FAcache.c @@ -505,7 +505,7 @@ H5FA__cache_hdr_free_icr(void *thing) /* Check arguments */ assert(thing); - /* Release the extensible array header */ + /* Release the fixed array header */ if (H5FA__hdr_dest((H5FA_hdr_t *)thing) < 0) HGOTO_ERROR(H5E_FARRAY, H5E_CANTFREE, FAIL, "can't free fixed array header"); diff --git a/src/H5FAhdr.c b/src/H5FAhdr.c index cfe5001..ef3d689 100644 --- a/src/H5FAhdr.c +++ b/src/H5FAhdr.c @@ -202,7 +202,7 @@ H5FA__hdr_create(H5F_t *f, const H5FA_create_t *cparam, void *ctx_udata) if (HADDR_UNDEF == (hdr->addr = H5MF_alloc(f, H5FD_MEM_FARRAY_HDR, (hsize_t)hdr->size))) HGOTO_ERROR(H5E_FARRAY, H5E_CANTALLOC, HADDR_UNDEF, "file allocation failed for Fixed Array header"); - /* Create 'top' proxy for extensible array entries */ + /* Create 'top' proxy for fixed array entries */ if (hdr->swmr_write) if (NULL == (hdr->top_proxy = H5AC_proxy_entry_create())) HGOTO_ERROR(H5E_FARRAY, H5E_CANTCREATE, HADDR_UNDEF, "can't create fixed array entry proxy"); |