diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-01-14 13:09:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-01-14 13:09:42 (GMT) |
commit | a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e (patch) | |
tree | a99fc3c171fc1fd0080f8ca9519e907450fba744 /src/H5HFiter.c | |
parent | 84a14c0f25b52a9bba1e2be59051b18cb0317b15 (diff) | |
download | hdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.zip hdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.tar.gz hdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.tar.bz2 |
[svn-r16306] Description:
Bring r16305 back from revise_chunks branch:
Add detection of C99 "designated initializers" to configure script and
use new H5_HAVE_C99_DESIGNATED_INITIALIZER macro to conditionally compile
default layout variables in src/H5Pdcpl.c
Also, minor code cleanups, etc.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
(Other platforms tested on branch)
Diffstat (limited to 'src/H5HFiter.c')
-rw-r--r-- | src/H5HFiter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5HFiter.c b/src/H5HFiter.c index 9e95c4e..e0f7142 100644 --- a/src/H5HFiter.c +++ b/src/H5HFiter.c @@ -183,7 +183,8 @@ HDfprintf(stderr, "%s: offset = %Hu\n", FUNC, offset); curr_offset = offset - hdr->man_dtable.row_block_off[row]; /* Compute column */ - col = curr_offset / hdr->man_dtable.row_block_size[row]; + H5_CHECK_OVERFLOW((curr_offset / hdr->man_dtable.row_block_size[row]), hsize_t, unsigned); + col = (unsigned)(curr_offset / hdr->man_dtable.row_block_size[row]); #ifdef QAK HDfprintf(stderr, "%s: row = %u, col = %u\n", FUNC, row, col); HDfprintf(stderr, "%s: offset = %Hu\n", FUNC, offset); |