From dc9723dfe2da9cdef957453860544b65f144eb4a Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 18 Mar 2016 11:21:53 +0100 Subject: [PATCH] examples/H5/openclose.c - H5SetPropFileMPIO() renamed to H5SetFileMPIOCollective() --- examples/H5/openclose.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/H5/openclose.c b/examples/H5/openclose.c index 0f789df..f23d658 100644 --- a/examples/H5/openclose.c +++ b/examples/H5/openclose.c @@ -23,7 +23,7 @@ main ( MPI_Comm_rank (comm, &myproc); h5_prop_t prop = H5CreateFileProp (); - H5SetPropFileMPIO (prop, &comm); + H5SetPropFileMPIOCollective (prop, &comm); h5_file_t f = H5OpenFile ("testfile.h5", H5_O_WRONLY, prop); H5CloseProp (prop); H5CloseFile (f);