summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-08-31 19:22:03 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-08-31 19:22:03 (GMT)
commit49fd0efca3dd515b07b47109cc999e7804874583 (patch)
tree3eec77e8e9dbb3bbe5f2f798804948fcf4b530b5 /src/H5D.c
parentd222611cd36780a55aa25492d7e2af76f89a742f (diff)
downloadhdf5-49fd0efca3dd515b07b47109cc999e7804874583.zip
hdf5-49fd0efca3dd515b07b47109cc999e7804874583.tar.gz
hdf5-49fd0efca3dd515b07b47109cc999e7804874583.tar.bz2
[svn-r2491] Added type of data parameter to H5F_block_write calls.
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5D.c b/src/H5D.c
index d19ea37..5e6b3ce 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -2526,7 +2526,7 @@ H5D_init_storage(H5D_t *dset, const H5S_t *space)
"unable to write fill value to dataset");
}
} else {
- if (H5F_block_write(dset->ent.file, addr, size,
+ if (H5F_block_write(dset->ent.file, H5FD_MEM_DRAW, addr, size,
H5P_DEFAULT, buf)<0) {
HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL,
"unable to write fill value to dataset");