diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:22:03 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:22:03 (GMT) |
commit | 49fd0efca3dd515b07b47109cc999e7804874583 (patch) | |
tree | 3eec77e8e9dbb3bbe5f2f798804948fcf4b530b5 /src/H5B.c | |
parent | d222611cd36780a55aa25492d7e2af76f89a742f (diff) | |
download | hdf5-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/H5B.c')
-rw-r--r-- | src/H5B.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -482,7 +482,7 @@ H5B_flush(H5F_t *f, hbool_t destroy, haddr_t addr, H5B_t *bt) if (IS_H5FD_MPIO(f)) H5FD_mpio_tas_allsame(f->shared->lf, TRUE); /* only p0 will write */ #endif /* H5_HAVE_PARALLEL */ - if (H5F_block_write(f, addr, (hsize_t)size, H5P_DEFAULT, bt->page)<0) { + if (H5F_block_write(f, H5FD_MEM_BTREE, addr, (hsize_t)size, H5P_DEFAULT, bt->page)<0) { HRETURN_ERROR(H5E_BTREE, H5E_CANTFLUSH, FAIL, "unable to save B-tree node to disk"); } |