summaryrefslogtreecommitdiffstats
path: root/test/ntypes.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2019-10-09 20:46:35 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2019-10-09 20:46:35 (GMT)
commit5c61be3de285b3a9a63d623944e13892a8a8cb94 (patch)
treea5d0ff88782ab0ebdd046f6834ad6c20839981a4 /test/ntypes.c
parentdaf2b836eeec857b2de4d70bc58abeb16d25eee0 (diff)
parent984c1bacd93c2f782c75c02d88d6e5c0362c74d0 (diff)
downloadhdf5-5c61be3de285b3a9a63d623944e13892a8a8cb94.zip
hdf5-5c61be3de285b3a9a63d623944e13892a8a8cb94.tar.gz
hdf5-5c61be3de285b3a9a63d623944e13892a8a8cb94.tar.bz2
Merge branch 'hdf5_1_12' of https://bitbucket.hdfgroup.org/scm/~lrknox/hdf5_lrk into hdf5_1_12
Diffstat (limited to 'test/ntypes.c')
-rw-r--r--test/ntypes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ntypes.c b/test/ntypes.c
index 83cdfd2..34558f5 100644
--- a/test/ntypes.c
+++ b/test/ntypes.c
@@ -1779,10 +1779,10 @@ test_vl_dtype(hid_t file)
} /* end for */
/* Reclaim the read VL data */
- if(H5Dvlen_reclaim(native_type, space, H5P_DEFAULT, rdata) < 0) TEST_ERROR;
+ if(H5Treclaim(native_type, space, H5P_DEFAULT, rdata) < 0) TEST_ERROR;
/* Reclaim the write VL data */
- if(H5Dvlen_reclaim(native_type, space, H5P_DEFAULT, wdata) < 0) TEST_ERROR;
+ if(H5Treclaim(native_type, space, H5P_DEFAULT, wdata) < 0) TEST_ERROR;
/* Close Dataset */
if(H5Dclose(dataset) < 0) TEST_ERROR;
@@ -1808,8 +1808,8 @@ error:
H5E_BEGIN_TRY {
if(native_type > 0) {
- H5Dvlen_reclaim(native_type, space, H5P_DEFAULT, rdata);
- H5Dvlen_reclaim(native_type, space, H5P_DEFAULT, wdata);
+ H5Treclaim(native_type, space, H5P_DEFAULT, rdata);
+ H5Treclaim(native_type, space, H5P_DEFAULT, wdata);
} /* end if */
H5Sclose(space);
H5Dclose(dataset);