summaryrefslogtreecommitdiffstats
path: root/src/H5Tref.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Tref.c')
-rw-r--r--src/H5Tref.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tref.c b/src/H5Tref.c
index 0f59715..8313cfb 100644
--- a/src/H5Tref.c
+++ b/src/H5Tref.c
@@ -1063,7 +1063,7 @@ H5T__ref_obj_disk_isnull(const H5VL_object_t *src_file, const void *src_buf, hbo
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid VOL object")
/* Get the object address */
- H5F_addr_decode(src_f, &p, &addr);
+ H5_addr_decode(src_f, &p, &addr);
/* Check if heap address is 'nil' */
*isnull = (addr == 0) ? TRUE : FALSE;
@@ -1215,7 +1215,7 @@ H5T__ref_dsetreg_disk_isnull(const H5VL_object_t *src_file, const void *src_buf,
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid VOL object")
/* Get the heap address */
- H5F_addr_decode(src_f, &p, &addr);
+ H5_addr_decode(src_f, &p, &addr);
/* Check if heap address is 'nil' */
*isnull = (addr == 0) ? TRUE : FALSE;