summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorRichard Warren <Richard.Warren@hdfgroup.org>2019-12-11 16:21:39 (GMT)
committerRichard Warren <Richard.Warren@hdfgroup.org>2019-12-11 16:21:39 (GMT)
commit2a94589f55bae69a06f8d672a904b9870d7353d1 (patch)
tree5479f7a5c1c4bdaa669df705c230fe2f24c26117 /testpar
parent5c97dbe59f1ea27dc66e46d4aaa676006abf9bae (diff)
downloadhdf5-2a94589f55bae69a06f8d672a904b9870d7353d1.zip
hdf5-2a94589f55bae69a06f8d672a904b9870d7353d1.tar.gz
hdf5-2a94589f55bae69a06f8d672a904b9870d7353d1.tar.bz2
Change from using H5Dcreate to H5Dcreate2
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_2Gio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/t_2Gio.c b/testpar/t_2Gio.c
index 6bd9cc6..d48dfca 100644
--- a/testpar/t_2Gio.c
+++ b/testpar/t_2Gio.c
@@ -620,10 +620,10 @@ int MpioTest2G( MPI_Comm comm )
/*
* Create the dataset with default properties and close filespace.
*/
- dset_id = H5Dcreate(file_id, DATASETNAME,
+ dset_id = H5Dcreate2(file_id, DATASETNAME,
H5T_NATIVE_INT, filespace,
H5P_DEFAULT, dcpl_id, H5P_DEFAULT);
- VRFY((dset_id >= 0), "H5Dcreate succeeded");
+ VRFY((dset_id >= 0), "H5Dcreate2 succeeded");
H5Sclose(filespace);
/*