From 40e214a23bad63f6085e415fbe483b9c5760f7fd Mon Sep 17 00:00:00 2001 From: Kurt Roeckx Date: Mon, 10 Nov 2014 19:03:03 +0100 Subject: [PATCH] Fix warning about negative unsigned intergers Reviewed-by: Richard Levitte --- crypto/constant_time_locl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/constant_time_locl.h b/crypto/constant_time_locl.h index ccb64082fd..8af98c1683 100644 --- a/crypto/constant_time_locl.h +++ b/crypto/constant_time_locl.h @@ -129,7 +129,7 @@ static inline int constant_time_select_int(unsigned int mask, int a, int b); static inline unsigned int constant_time_msb(unsigned int a) { - return -(a >> (sizeof(unsigned int) * 8 - 1)); + return 0-(a >> (sizeof(a) * 8 - 1)); } static inline unsigned int constant_time_lt(unsigned int a, unsigned int b) -- 2.34.1