diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:26:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:26:06 (GMT) |
commit | b678afccd8f7e761383d801f9578d06f65f74bd2 (patch) | |
tree | 5d679d759d71fd9cbca6707a845b8664f46c2b4e /src/H5Distore.c | |
parent | 0709cc1025c1e7f3952ca1a5dd7daa10b6b21ec6 (diff) | |
download | hdf5-b678afccd8f7e761383d801f9578d06f65f74bd2.zip hdf5-b678afccd8f7e761383d801f9578d06f65f74bd2.tar.gz hdf5-b678afccd8f7e761383d801f9578d06f65f74bd2.tar.bz2 |
[svn-r2495] More type of data parameter additions for H5F_block_write.
Diffstat (limited to 'src/H5Distore.c')
-rw-r--r-- | src/H5Distore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Distore.c b/src/H5Distore.c index 8eb107b..06667bc 100644 --- a/src/H5Distore.c +++ b/src/H5Distore.c @@ -999,7 +999,7 @@ H5F_istore_flush_entry(H5F_t *f, H5F_rdcc_ent_t *ent, hbool_t reset) HGOTO_ERROR(H5E_IO, H5E_WRITEERROR, FAIL, "unable to allocate chunk"); } - if (H5F_block_write(f, udata.addr, udata.key.nbytes, H5P_DEFAULT, + if (H5F_block_write(f, H5FD_MEM_DRAW, udata.addr, udata.key.nbytes, H5P_DEFAULT, buf)<0) { HGOTO_ERROR(H5E_IO, H5E_WRITEERROR, FAIL, "unable to write raw data to file"); |