diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-10-27 06:33:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-10-27 06:33:07 (GMT) |
commit | 6e84fd8327138e48bd515665c1919bc8cf22dc9f (patch) | |
tree | 8e1db3902adcb85df26dd92fd5a7c7eeeee3eb6f /test/vds_swmr_writer.c | |
parent | ce3d1ec9ea5a7a0627d948687d64dc7e5e76f6cd (diff) | |
download | hdf5-6e84fd8327138e48bd515665c1919bc8cf22dc9f.zip hdf5-6e84fd8327138e48bd515665c1919bc8cf22dc9f.tar.gz hdf5-6e84fd8327138e48bd515665c1919bc8cf22dc9f.tar.bz2 |
Remove virtual dataset refresh code's direct use of native VOL plugin's ID.
Diffstat (limited to 'test/vds_swmr_writer.c')
-rw-r--r-- | test/vds_swmr_writer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vds_swmr_writer.c b/test/vds_swmr_writer.c index 7824aa0..d62ecaf 100644 --- a/test/vds_swmr_writer.c +++ b/test/vds_swmr_writer.c @@ -56,7 +56,7 @@ main(int argc, char *argv[]) /* Open the source file and dataset */ /* All SWMR files need to use the latest file format */ - if((faplid = H5Pcreate(H5P_FILE_ACCESS)) < 0) + if((faplid = h5_fileaccess()) < 0) TEST_ERROR if(H5Pset_libver_bounds(faplid, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0) TEST_ERROR |