examples/H5Part/{read,write}_core_vfd.c:

- missing 'incr' argument added to H5SetPropFileCoreVFD() call
This commit is contained in:
2016-03-18 11:25:25 +01:00
parent 9d37783868
commit f151a24796
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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);
+1 -1
View File
@@ -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);