diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2009-03-25 19:28:01 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2009-03-25 19:28:01 (GMT) |
commit | b03ffd19f4fe522930f90700b60db47e537c84e1 (patch) | |
tree | 0c2a19990da8e1e88c3d38d1792f93a44533cbcf | |
parent | b6312126e53206bea4728a81bfcc79dc255acb69 (diff) | |
download | hdf5-b03ffd19f4fe522930f90700b60db47e537c84e1.zip hdf5-b03ffd19f4fe522930f90700b60db47e537c84e1.tar.gz hdf5-b03ffd19f4fe522930f90700b60db47e537c84e1.tar.bz2 |
[svn-r16612] I changed the API function H5Dopen to H5Dopen2, which I introduced in recent checkin.
Tested on jam - simple change.
-rw-r--r-- | test/vfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |