diff options
author | lrknox <lrknox> | 2017-05-10 19:44:58 (GMT) |
---|---|---|
committer | lrknox <lrknox> | 2017-05-10 19:44:58 (GMT) |
commit | c8a5520d3aa3a526460c81507f2f985dc534b14f (patch) | |
tree | 48233c9d6bde4d1c34643a2b8c329c0d9baba36b /test/dsets.c | |
parent | 9d50ed52875549dad6e5253111c0356aca3c2c05 (diff) | |
download | hdf5-c8a5520d3aa3a526460c81507f2f985dc534b14f.zip hdf5-c8a5520d3aa3a526460c81507f2f985dc534b14f.tar.gz hdf5-c8a5520d3aa3a526460c81507f2f985dc534b14f.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.
Diffstat (limited to 'test/dsets.c')
-rw-r--r-- | test/dsets.c | 2 |
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 |