diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-09 20:23:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-09 20:23:28 (GMT) |
commit | d48558126d9c19fe3b418a22086a015bd56997f9 (patch) | |
tree | fc50bbeaf501c08c356a572558654d1c065abd15 /src/H5Dseq.c | |
parent | a7028fb006be7d91626650f22748d22a1a74f6ee (diff) | |
download | hdf5-d48558126d9c19fe3b418a22086a015bd56997f9.zip hdf5-d48558126d9c19fe3b418a22086a015bd56997f9.tar.gz hdf5-d48558126d9c19fe3b418a22086a015bd56997f9.tar.bz2 |
[svn-r5866] Purpose:
Code cleanup
Description:
Cleaned up a few warnings from compiling with --disable-hsizet on Linux
Platforms tested:
Linux 2.2.x (eirene)
Diffstat (limited to 'src/H5Dseq.c')
-rw-r--r-- | src/H5Dseq.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5Dseq.c b/src/H5Dseq.c index d753dba..ce11c8d 100644 --- a/src/H5Dseq.c +++ b/src/H5Dseq.c @@ -258,7 +258,8 @@ H5F_seq_readv(H5F_t *f, hid_t dxpl_id, const H5O_layout_t *layout, * all datasets in external files would alias to the same set of * file offsets, totally mixing up the data sieve buffer information. -QAK */ - if (H5O_efl_read(f, &efl, file_offset_arr[v], seq_len_arr[v], real_buf)<0) + H5_CHECK_OVERFLOW(file_offset_arr[v],hsize_t,haddr_t); + if (H5O_efl_read(f, &efl, (haddr_t)file_offset_arr[v], seq_len_arr[v], real_buf)<0) HGOTO_ERROR(H5E_IO, H5E_READERROR, FAIL, "external data read failed"); /* Increment offset in buffer */ @@ -641,7 +642,8 @@ H5F_seq_writev(H5F_t *f, hid_t dxpl_id, const H5O_layout_t *layout, * all datasets in external files would alias to the same set of * file offsets, totally mixing up the data sieve buffer information. -QAK */ - if (H5O_efl_write(f, &efl, file_offset_arr[v], seq_len_arr[v], real_buf)<0) + H5_CHECK_OVERFLOW(file_offset_arr[v],hsize_t,haddr_t); + if (H5O_efl_write(f, &efl, (haddr_t)file_offset_arr[v], seq_len_arr[v], real_buf)<0) HGOTO_ERROR(H5E_IO, H5E_WRITEERROR, FAIL, "external data write failed"); /* Increment offset in buffer */ |