diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-18 21:21:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-18 21:21:35 (GMT) |
commit | af6276f6543d06c9f18939cc8b810f57397b7a67 (patch) | |
tree | ef2c50b7bd22d0967fdab6075864577746e4b147 /src/H5Zshuffle.c | |
parent | d8b08dbc85dfe28d926caf3c03e9d60c63d80794 (diff) | |
download | hdf5-af6276f6543d06c9f18939cc8b810f57397b7a67.zip hdf5-af6276f6543d06c9f18939cc8b810f57397b7a67.tar.gz hdf5-af6276f6543d06c9f18939cc8b810f57397b7a67.tar.bz2 |
[svn-r10628] Purpose:
Code cleanup
Description:
Clean up various warnings reported by the Windows team.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Zshuffle.c')
-rw-r--r-- | src/H5Zshuffle.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Zshuffle.c b/src/H5Zshuffle.c index 202e15b..301aafd 100644 --- a/src/H5Zshuffle.c +++ b/src/H5Zshuffle.c @@ -126,7 +126,10 @@ H5Z_filter_shuffle(unsigned flags, size_t cd_nelmts, const unsigned cd_values[], unsigned char *_dest=NULL; /* Alias for destination buffer */ unsigned bytesoftype; /* Number of bytes per element */ size_t numofelements; /* Number of elements in buffer */ - size_t i,j; /* Local index variables */ + size_t i; /* Local index variables */ +#ifdef NO_DUFFS_DEVICE + size_t j; /* Local index variable */ +#endif /* NO_DUFFS_DEVICE */ size_t leftover; /* Extra bytes at end of buffer */ size_t ret_value; /* Return value */ |