diff options
Diffstat (limited to 'Modules/expat/siphash.h')
-rw-r--r-- | Modules/expat/siphash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/expat/siphash.h b/Modules/expat/siphash.h index e5406d7..303283a 100644 --- a/Modules/expat/siphash.h +++ b/Modules/expat/siphash.h @@ -106,7 +106,7 @@ * if this code is included and compiled as C++; related GCC warning is: * warning: use of C++11 long long integer constant [-Wlong-long] */ -#define _SIP_ULL(high, low) (((uint64_t)high << 32) | low) +#define _SIP_ULL(high, low) ((((uint64_t)high) << 32) | (low)) #define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) |