summaryrefslogtreecommitdiffstats
path: root/examples/h5_mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/h5_mount.c')
-rw-r--r--examples/h5_mount.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/h5_mount.c b/examples/h5_mount.c
index 6c4910c..6da71a1 100644
--- a/examples/h5_mount.c
+++ b/examples/h5_mount.c
@@ -45,10 +45,9 @@ int main(void)
/*
* Initialization of buffer matrix "bm"
*/
- for(i =0; i<NX; i++) {
- for(j = 0; j<NY; j++)
+ for(i =0; i < NX; i++)
+ for(j = 0; j < NY; j++)
bm[i][j] = i + j;
- }
/*
* Create first file and a group in it.
@@ -69,7 +68,7 @@ int main(void)
dims[0] = NX;
dims[1] = NY;
sid = H5Screate_simple(RANK, dims, NULL);
- did = H5Dcreate(fid2, "D", H5T_NATIVE_INT, sid, H5P_DEFAULT);
+ did = H5Dcreate2(fid2, "D", H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
/*
* Write data to the dataset.