mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r16612] I changed the API function H5Dopen to H5Dopen2, which I introduced in recent checkin.
Tested on jam - simple change.
This commit is contained in:
parent
b6312126e5
commit
b03ffd19f4
@ -831,7 +831,7 @@ test_family_compat(void)
|
||||
if((file = H5Fopen(pathname, H5F_ACC_RDWR, fapl)) < 0)
|
||||
TEST_ERROR;
|
||||
|
||||
if((dset = H5Dopen(file, dname, H5P_DEFAULT)) < 0)
|
||||
if((dset = H5Dopen2(file, dname, H5P_DEFAULT)) < 0)
|
||||
TEST_ERROR;
|
||||
|
||||
if(H5Dclose(dset) < 0)
|
||||
@ -844,7 +844,7 @@ test_family_compat(void)
|
||||
if((file = H5Fopen(pathname, H5F_ACC_RDWR, fapl)) < 0)
|
||||
TEST_ERROR;
|
||||
|
||||
if((dset = H5Dopen(file, dname, H5P_DEFAULT)) < 0)
|
||||
if((dset = H5Dopen2(file, dname, H5P_DEFAULT)) < 0)
|
||||
TEST_ERROR;
|
||||
|
||||
if(H5Dclose(dset) < 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user