summaryrefslogtreecommitdiffstats
path: root/src/H5Tconv.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-05-08 00:27:03 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-05-08 00:27:03 (GMT)
commit94bb7e1f789362601b575b262f038f5396aa9f67 (patch)
treeff82316225254970d6845f47ef37b54ef5af2776 /src/H5Tconv.c
parentf8e8b340dcc2e3abbf477b49b2ee0c2fdede1e7c (diff)
downloadhdf5-94bb7e1f789362601b575b262f038f5396aa9f67.zip
hdf5-94bb7e1f789362601b575b262f038f5396aa9f67.tar.gz
hdf5-94bb7e1f789362601b575b262f038f5396aa9f67.tar.bz2
Normalization of H5T
Diffstat (limited to 'src/H5Tconv.c')
-rw-r--r--src/H5Tconv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tconv.c b/src/H5Tconv.c
index 4e1c16f..a33a67c 100644
--- a/src/H5Tconv.c
+++ b/src/H5Tconv.c
@@ -9529,14 +9529,14 @@ H5T_reclaim_cb(void *elem, const H5T_t *dt, unsigned H5_ATTR_UNUSED ndim, const
HDassert(dt);
if (dt->shared->type == H5T_REFERENCE) {
- if (H5T_ref_reclaim(elem, dt) < 0)
+ if (H5T__ref_reclaim(elem, dt) < 0)
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTFREE, FAIL, "can't reclaim ref elements")
}
else {
HDassert(op_data);
/* Allow vlen reclaim to recurse into that routine */
- if (H5T_vlen_reclaim(elem, dt, (H5T_vlen_alloc_info_t *)op_data) < 0)
+ if (H5T__vlen_reclaim(elem, dt, (H5T_vlen_alloc_info_t *)op_data) < 0)
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTFREE, FAIL, "can't reclaim vlen elements")
}