summaryrefslogtreecommitdiffstats
path: root/src/H5HLdblk.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/H5HLdblk.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/H5HLdblk.c')
-rw-r--r--src/H5HLdblk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5HLdblk.c b/src/H5HLdblk.c
index b4c34cf..6b3557a 100644
--- a/src/H5HLdblk.c
+++ b/src/H5HLdblk.c
@@ -191,11 +191,11 @@ H5HL__dblk_realloc(H5F_t *f, H5HL_t *heap, size_t new_heap_size)
heap->dblk_size = new_heap_size;
/* Check if heap data block actually moved in the file */
- if (H5F_addr_eq(old_addr, new_addr)) {
+ if (H5_addr_eq(old_addr, new_addr)) {
/* Check if heap data block is contiguous w/prefix */
if (heap->single_cache_obj) {
/* Sanity check */
- assert(H5F_addr_eq(heap->prfx_addr + heap->prfx_size, old_addr));
+ assert(H5_addr_eq(heap->prfx_addr + heap->prfx_size, old_addr));
assert(heap->prfx);
/* Resize the heap prefix in the cache */
@@ -204,7 +204,7 @@ H5HL__dblk_realloc(H5F_t *f, H5HL_t *heap, size_t new_heap_size)
}
else {
/* Sanity check */
- assert(H5F_addr_ne(heap->prfx_addr + heap->prfx_size, old_addr));
+ assert(H5_addr_ne(heap->prfx_addr + heap->prfx_size, old_addr));
assert(heap->dblk);
/* Resize the heap data block in the cache */