summaryrefslogtreecommitdiffstats
path: root/src/H5Oefl.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-06-11 19:53:30 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-06-11 19:53:30 (GMT)
commitbea931d73cb9db08ac220393c2cb59dd6326a8ef (patch)
tree2a3852ebb0641453477852bf0c93be5b06e99335 /src/H5Oefl.c
parentd9348f3763294259cc75f15bd255133c820112db (diff)
downloadhdf5-bea931d73cb9db08ac220393c2cb59dd6326a8ef.zip
hdf5-bea931d73cb9db08ac220393c2cb59dd6326a8ef.tar.gz
hdf5-bea931d73cb9db08ac220393c2cb59dd6326a8ef.tar.bz2
[svn-r3983] Purpose:
Code cleanups Description: Fixed a small number of warnings and also took out the H5private.h header from H5Ppublic.h Platforms tested: FreeBSD 4.3 (hawkwind)
Diffstat (limited to 'src/H5Oefl.c')
-rw-r--r--src/H5Oefl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Oefl.c b/src/H5Oefl.c
index de6595b..c5ac308 100644
--- a/src/H5Oefl.c
+++ b/src/H5Oefl.c
@@ -537,7 +537,7 @@ H5O_efl_write (H5F_t UNUSED *f, const H5O_efl_t *efl, haddr_t addr,
"unable to seek in external raw data file");
}
to_write = MIN(efl->slot[i].size-skip, size);
- if ((size_t)HDwrite (fd, (void*)buf, to_write)!=to_write) {
+ if ((size_t)HDwrite (fd, buf, to_write)!=to_write) {
HGOTO_ERROR (H5E_EFL, H5E_READERROR, FAIL,
"write error in external raw data file");
}