From 52ac462e7c7af08f176e0772914fa16d815d7e16 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 16 Sep 2015 12:23:47 -0500 Subject: [svn-r27805] Description: Shut warnings from purify up. Tested on: Linux/32 2.6 (jam) w/purify (Too minor to require h5committest) --- src/H5Cpkg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12