summaryrefslogtreecommitdiffstats
path: root/examples/h5_vds-eiger.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/h5_vds-eiger.c')
-rw-r--r--examples/h5_vds-eiger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/h5_vds-eiger.c b/examples/h5_vds-eiger.c
index a6ab827..ea22243 100644
--- a/examples/h5_vds-eiger.c
+++ b/examples/h5_vds-eiger.c
@@ -84,7 +84,7 @@ main (void)
/* Create a virtual dataset */
- dset = H5Dcreate (file, DATASET, H5T_NATIVE_INT, vspace, H5P_DEFAULT,
+ dset = H5Dcreate2 (file, DATASET, H5T_NATIVE_INT, vspace, H5P_DEFAULT,
dcpl, H5P_DEFAULT);
status = H5Sclose (vspace);
status = H5Sclose (src_space);
@@ -100,7 +100,7 @@ main (void)
* Open file and dataset using the default properties.
*/
file = H5Fopen (FILE, H5F_ACC_RDONLY, H5P_DEFAULT);
- dset = H5Dopen (file, DATASET, H5P_DEFAULT);
+ dset = H5Dopen2 (file, DATASET, H5P_DEFAULT);
/*
* Get creation property list and mapping properties.