summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-03-22 16:39:25 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-03-22 16:39:25 (GMT)
commitbda8f41c89f28968534fb3d218b8ef87f83c7300 (patch)
treebab042f64d355ef1cc708e38a6906ab8661cc1d2
parenta24ce7b680be30593607b077999b34af28da6c68 (diff)
parente79f9a73feb1b18c52a1608336aff612d2732d5b (diff)
downloadhdf5-bda8f41c89f28968534fb3d218b8ef87f83c7300.zip
hdf5-bda8f41c89f28968534fb3d218b8ef87f83c7300.tar.gz
hdf5-bda8f41c89f28968534fb3d218b8ef87f83c7300.tar.bz2
Merge remote-tracking branch 'origin/develop' into merge_func_enter_vol
-rw-r--r--hl/test/test_dset_opt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/test/test_dset_opt.c b/hl/test/test_dset_opt.c
index fe2b2f3..ef4cf13 100644
--- a/hl/test/test_dset_opt.c
+++ b/hl/test/test_dset_opt.c
@@ -2040,7 +2040,7 @@ test_single_chunk_latest(void)
goto error;
/* Create the dataset */
- if((did = H5Dcreate(fid, DATASET, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
+ if((did = H5Dcreate2(fid, DATASET, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
goto error;
/* Write the data directly to the dataset */
@@ -2064,7 +2064,7 @@ test_single_chunk_latest(void)
/* Open the file and dataset with default properties */
if((fid = H5Fopen(FILE, H5F_ACC_RDONLY, H5P_DEFAULT)) < 0)
goto error;
- if((did = H5Dopen(fid, DATASET, H5P_DEFAULT)) < 0)
+ if((did = H5Dopen2(fid, DATASET, H5P_DEFAULT)) < 0)
goto error;
/* Retrieve dataset creation property list */