summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlrknox <lrknox>2017-05-10 19:44:58 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2017-05-11 17:11:20 (GMT)
commit228939e7315cc9644e158fc246f4908301d77a35 (patch)
treea99850bfbafdb51454a90a0fc4cc0cbfde9b4f9e
parenta45f5f8f533ebebaa89c701679c3ee64c55a8820 (diff)
downloadhdf5-228939e7315cc9644e158fc246f4908301d77a35.zip
hdf5-228939e7315cc9644e158fc246f4908301d77a35.tar.gz
hdf5-228939e7315cc9644e158fc246f4908301d77a35.tar.bz2
Call to H5Dopen has H5dopen2 arguments at line 12704 of test/dsets.c -
changed to H5Dopen2 to fix failure with --with-default-api-version=v16 configure option.
-rw-r--r--test/dsets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dsets.c b/test/dsets.c
index ad014a6..ba0ad82 100644
--- a/test/dsets.c
+++ b/test/dsets.c
@@ -12701,7 +12701,7 @@ test_compact_open_close_dirty(hid_t fapl)
/* Verify the repeated open/close of the dataset will not fail */
for(i = 0; i < 20;i++) {
H5E_BEGIN_TRY {
- did = H5Dopen (fid, DSET_COMPACT_MAX_NAME, H5P_DEFAULT);
+ did = H5Dopen2 (fid, DSET_COMPACT_MAX_NAME, H5P_DEFAULT);
} H5E_END_TRY;
if(did < 0)
TEST_ERROR