Skip to content

Commit

Permalink
Change 'extensible' to 'fixed' in H5FA code (HDFGroup#3964)
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins authored and lrknox committed Feb 14, 2024
1 parent 6d10fa1 commit 7e7ea3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/H5FAcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down
2 changes: 1 addition & 1 deletion src/H5FAhdr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 7e7ea3b

Please sign in to comment.