diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-02-06 00:44:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-02-06 00:44:56 (GMT) |
commit | e63f0baf7e3a8e36c19f52d7692b483b7440e5eb (patch) | |
tree | e4d7a266fbd437286e76696a2b39dc8bb5a6fa9b | |
parent | 90c3d4e0cabb555a53ade75b9039465e39ca0070 (diff) | |
download | hdf5-e63f0baf7e3a8e36c19f52d7692b483b7440e5eb.zip hdf5-e63f0baf7e3a8e36c19f52d7692b483b7440e5eb.tar.gz hdf5-e63f0baf7e3a8e36c19f52d7692b483b7440e5eb.tar.bz2 |
[svn-r16448] Description:
Fix additional breakage of 'make check-vfd' for this test
Tested on:
Linux/64 2.6 (smirom) w/make check-vfd
-rw-r--r-- | test/dsets.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dsets.c b/test/dsets.c index 95ac4a3..5ea5774 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -5766,7 +5766,7 @@ test_filters_endianess(hid_t fapl) HDstrcat(data_file, "test_filters_le.hdf5"); /* open */ - if((fid = H5Fopen(data_file, H5F_ACC_RDONLY, fapl)) < 0) FAIL_STACK_ERROR + if((fid = H5Fopen(data_file, H5F_ACC_RDONLY, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR /* read */ if(auxread_fdata(fid,"dset") < 0) TEST_ERROR @@ -5788,7 +5788,7 @@ test_filters_endianess(hid_t fapl) HDstrcat(data_file, "test_filters_be.hdf5"); /* open */ - if((fid = H5Fopen(data_file, H5F_ACC_RDONLY, fapl)) < 0) FAIL_STACK_ERROR + if((fid = H5Fopen(data_file, H5F_ACC_RDONLY, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR /* read */ if(auxread_fdata(fid,"dset") < 0) TEST_ERROR |