summaryrefslogtreecommitdiffstats
path: root/src/H5B2int.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 23:39:48 (GMT)
committerGitHub <noreply@github.com>2023-07-27 23:39:48 (GMT)
commit38e234b620595f3eac5ff68dd71d4b29cfd46b18 (patch)
tree905658547118279ea17cab8ffac2820d865b3b92 /src/H5B2int.c
parente286b6e706b28330a64115c13c11ae832536b857 (diff)
downloadhdf5-38e234b620595f3eac5ff68dd71d4b29cfd46b18.zip
hdf5-38e234b620595f3eac5ff68dd71d4b29cfd46b18.tar.gz
hdf5-38e234b620595f3eac5ff68dd71d4b29cfd46b18.tar.bz2
Convert H5F_addr calls to H5_addr (#3297)
Diffstat (limited to 'src/H5B2int.c')
-rw-r--r--src/H5B2int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5B2int.c b/src/H5B2int.c
index e56b211..766157b 100644
--- a/src/H5B2int.c
+++ b/src/H5B2int.c
@@ -1543,7 +1543,7 @@ H5B2__insert(H5B2_hdr_t *hdr, void *udata)
assert(udata);
/* Check if the root node is allocated yet */
- if (!H5F_addr_defined(hdr->root.addr)) {
+ if (!H5_addr_defined(hdr->root.addr)) {
/* Create root node as leaf node in B-tree */
if (H5B2__create_leaf(hdr, hdr, &(hdr->root)) < 0)
HGOTO_ERROR(H5E_BTREE, H5E_CANTINIT, FAIL, "unable to create root node")