diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-08-12 12:46:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-08-12 12:46:40 (GMT) |
commit | 507a21125783ea03d75e8c6460212cd22f8466ee (patch) | |
tree | a8279d3036e2bf3b625d33a104ac35996e26dfcf /src/H5Dchunk.c | |
parent | 4f61812180385bb969fee33eece609180cab4866 (diff) | |
download | hdf5-507a21125783ea03d75e8c6460212cd22f8466ee.zip hdf5-507a21125783ea03d75e8c6460212cd22f8466ee.tar.gz hdf5-507a21125783ea03d75e8c6460212cd22f8466ee.tar.bz2 |
[svn-r15462] Description:
Correct compiler warnings from Visual Studio.
Tested on:
Mac OS X/32 10.5.4 (amazon) w/FORTRAN & C++
(Too minor to require full h5committest)
Diffstat (limited to 'src/H5Dchunk.c')
-rw-r--r-- | src/H5Dchunk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index 711b91b..d15715b 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -3266,7 +3266,8 @@ H5D_chunk_prune_cb(const H5D_chunk_rec_t *chunk_rec, void *_udata) /* The number of bytes accessed in the chunk */ /* (i.e. the bytes replaced with fill values) */ - bytes_accessed = sel_nelmts * layout->u.chunk.dim[rank]; + H5_CHECK_OVERFLOW(sel_nelmts, hssize_t, uint32_t); + bytes_accessed = (uint32_t)sel_nelmts * layout->u.chunk.dim[rank]; /* Release lock on chunk */ if(H5D_chunk_unlock(io_info, TRUE, idx_hint, chunk, bytes_accessed) < 0) |