From e63f0baf7e3a8e36c19f52d7692b483b7440e5eb Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Thu, 5 Feb 2009 19:44:56 -0500 Subject: [svn-r16448] Description: Fix additional breakage of 'make check-vfd' for this test Tested on: Linux/64 2.6 (smirom) w/make check-vfd --- test/dsets.c | 4 ++-- 1 file 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 -- cgit v0.12