diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-16 17:23:47 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-16 17:23:47 (GMT) |
commit | 52ac462e7c7af08f176e0772914fa16d815d7e16 (patch) | |
tree | c30c18c145eaf6deb59d7783f9d43e87e1fb75c6 | |
parent | 36869656f5d8b87dab7caea7280b1fd1432e10f7 (diff) | |
download | hdf5-52ac462e7c7af08f176e0772914fa16d815d7e16.zip hdf5-52ac462e7c7af08f176e0772914fa16d815d7e16.tar.gz hdf5-52ac462e7c7af08f176e0772914fa16d815d7e16.tar.bz2 |
[svn-r27805] Description:
Shut warnings from purify up.
Tested on:
Linux/32 2.6 (jam) w/purify
(Too minor to require h5committest)
-rw-r--r-- | src/H5Cpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Cpkg.h b/src/H5Cpkg.h index 6c8996d..6ef2c96 100644 --- a/src/H5Cpkg.h +++ b/src/H5Cpkg.h @@ -836,7 +836,7 @@ if ( ( (entry_ptr) == NULL ) || \ #define H5C__HASH_MASK ((size_t)(H5C__HASH_TABLE_LEN - 1) << 3) -#define H5C__HASH_FCN(x) (int)(((x) & H5C__HASH_MASK) >> 3) +#define H5C__HASH_FCN(x) (int)((unsigned)((x) & H5C__HASH_MASK) >> 3) #if H5C_DO_SANITY_CHECKS |