Merge pull request #1798 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop

* commit '33e9b4526ec7b5d910bda879ac92dc992672057b':
  Use H5DOpen2 in hl/test/test_dset_append.c.
This commit is contained in:
Allen Byrne 2019-07-11 09:59:14 -05:00
commit c7099da319

View File

@ -691,7 +691,7 @@ test_dataset_append_BUG1(hid_t fid)
FAIL_STACK_ERROR;
/* Open the dataset again */
if((did = H5Dopen(fid, DBUGNAME1, H5P_DEFAULT)) < 0)
if((did = H5Dopen2(fid, DBUGNAME1, H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR;
/* Read the dataset */
@ -853,7 +853,7 @@ test_dataset_append_BUG2(hid_t fid)
FAIL_STACK_ERROR;
/* Open the dataset again */
if((did = H5Dopen(fid, DBUGNAME2, H5P_DEFAULT)) < 0)
if((did = H5Dopen2(fid, DBUGNAME2, H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR;
/* Read the dataset */