summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2019-05-09 17:46:10 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2019-05-09 17:46:10 (GMT)
commit7ce0e7d8fedac0f3de0241b74df8fe167de13c9d (patch)
treefd8d01dae3b08348938b5dd2029f7524e73685e7 /hl
parent16f94d39078965a2c5977885d4fb112c12f18ad1 (diff)
downloadhdf5-7ce0e7d8fedac0f3de0241b74df8fe167de13c9d.zip
hdf5-7ce0e7d8fedac0f3de0241b74df8fe167de13c9d.tar.gz
hdf5-7ce0e7d8fedac0f3de0241b74df8fe167de13c9d.tar.bz2
Add fixes that were mistakenly omitted from merge of pull request 1594
to 1.8 branch.
Diffstat (limited to 'hl')
-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 f2ad57e..fac2e89 100644
--- a/hl/test/test_dset_opt.c
+++ b/hl/test/test_dset_opt.c
@@ -2048,7 +2048,7 @@ test_single_chunk(unsigned config)
if(config & CONFIG_DIRECT_WRITE) {
/* Write the data directly to the dataset */
- if(H5Dwrite_chunk(did, H5P_DEFAULT, 0, offset, CHUNK0*CHUNK1*4, (void *)wdata) < 0)
+ if(H5DOwrite_chunk(did, H5P_DEFAULT, 0, offset, CHUNK0*CHUNK1*4, (void *)wdata) < 0)
goto error;
} /* end if */
else
@@ -2086,7 +2086,7 @@ test_single_chunk(unsigned config)
if(config & CONFIG_DIRECT_READ) {
/* Read the data directly */
- if(H5Dread_chunk(did, H5P_DEFAULT, offset, &filters, rdata) < 0)
+ if(H5DOread_chunk(did, H5P_DEFAULT, offset, &filters, rdata) < 0)
goto error;
/* Verify returned filter mask */