From f151a2479614728e35a1cfb25d3e25271fbc9972 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 18 Mar 2016 11:25:25 +0100 Subject: [PATCH] examples/H5Part/{read,write}_core_vfd.c: - missing 'incr' argument added to H5SetPropFileCoreVFD() call --- examples/H5Part/read_core_vfd.c | 2 +- examples/H5Part/write_core_vfd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/H5Part/read_core_vfd.c b/examples/H5Part/read_core_vfd.c index 4ad44ff..e2aae96 100644 --- a/examples/H5Part/read_core_vfd.c +++ b/examples/H5Part/read_core_vfd.c @@ -39,7 +39,7 @@ main ( // open file and create first step h5_prop_t prop = H5CreateFileProp (); - H5SetPropFileCoreVFD (prop); + H5SetPropFileCoreVFD (prop, 0); h5_file_t file = H5OpenFile (fname, H5_O_RDONLY, prop); H5SetStep (file, 0); diff --git a/examples/H5Part/write_core_vfd.c b/examples/H5Part/write_core_vfd.c index 6e879e1..f29c252 100644 --- a/examples/H5Part/write_core_vfd.c +++ b/examples/H5Part/write_core_vfd.c @@ -42,7 +42,7 @@ main ( // open file and create first step h5_prop_t prop = H5CreateFileProp (); - H5SetPropFileCoreVFD (prop); + H5SetPropFileCoreVFD (prop, 0); h5_file_t file = H5OpenFile (fname, H5_O_WRONLY, prop); H5SetStep (file, 0);