summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2014-11-10 19:03:03 +0100
committerKurt Roeckx <kurt@roeckx.be>2014-11-11 15:48:18 +0100
commit9e5267fcddd0550b0427c76f1f0a873317af99fa (patch)
tree6a4fc73c3f2f84704a2041bfe7d87ef9408cbe8e /crypto
parent0d330ce5cc89fb1141e69f19fd4b2eb5e47f2e3b (diff)
Fix warning about negative unsigned intergers
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/constant_time_locl.h2
1 files changed, 1 insertions, 1 deletions
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)