summaryrefslogtreecommitdiffstats
path: root/src/H5Oefl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Oefl.c')
-rw-r--r--src/H5Oefl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Oefl.c b/src/H5Oefl.c
index 3f0b5ea..9018540 100644
--- a/src/H5Oefl.c
+++ b/src/H5Oefl.c
@@ -118,8 +118,8 @@ H5O__efl_decode(H5F_t *f, H5O_t H5_ATTR_UNUSED *open_oh, unsigned H5_ATTR_UNUSED
/* Heap address */
if (H5_IS_BUFFER_OVERFLOW(p, H5F_sizeof_addr(f), p_end))
HGOTO_ERROR(H5E_OHDR, H5E_OVERFLOW, NULL, "ran off end of input buffer while decoding");
- H5F_addr_decode(f, &p, &(mesg->heap_addr));
- if (H5F_addr_defined(mesg->heap_addr) == FALSE)
+ H5_addr_decode(f, &p, &(mesg->heap_addr));
+ if (H5_addr_defined(mesg->heap_addr) == FALSE)
HGOTO_ERROR(H5E_OHDR, H5E_CANTLOAD, NULL, "bad local heap address when parsing efl msg")
/* Decode the file list */
@@ -225,8 +225,8 @@ H5O__efl_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p, con
UINT16ENCODE(p, mesg->nused);
/* Heap address */
- assert(H5F_addr_defined(mesg->heap_addr));
- H5F_addr_encode(f, &p, mesg->heap_addr);
+ assert(H5_addr_defined(mesg->heap_addr));
+ H5_addr_encode(f, &p, mesg->heap_addr);
/* Encode file list */
for (u = 0; u < mesg->nused; u++) {