diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2009-03-25 19:49:19 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2009-03-25 19:49:19 (GMT) |
commit | 2def5e4c85b2fa2cdc992f360a90dc2a103e9e17 (patch) | |
tree | 5302b31883ca82722868483b48e06e7c6b66f05f /test | |
parent | 30ccff2212467bfb342b566752c41de94cd4bf85 (diff) | |
download | hdf5-2def5e4c85b2fa2cdc992f360a90dc2a103e9e17.zip hdf5-2def5e4c85b2fa2cdc992f360a90dc2a103e9e17.tar.gz hdf5-2def5e4c85b2fa2cdc992f360a90dc2a103e9e17.tar.bz2 |
[svn-r16613] In previous checkin (r16609), the flag "write_driver" wasn't necessary as Quincey pointed out.
I took it out and used the driver address instead.
Tested on jam - simple change.
Diffstat (limited to 'test')
-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) |