From dd668a7179b618310c592544de255dce3dba9ca3 Mon Sep 17 00:00:00 2001 From: das Date: Fri, 1 Dec 2006 05:47:47 +0000 Subject: fix gcc warning: "suggest parentheses around comparison in operand of &" --- libtommath/bn_mp_div_d.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libtommath/bn_mp_div_d.c b/libtommath/bn_mp_div_d.c index b12fb5c..4289602 100644 --- a/libtommath/bn_mp_div_d.c +++ b/libtommath/bn_mp_div_d.c @@ -20,7 +20,7 @@ static int s_is_power_of_two(mp_digit b, int *p) int x; /* quick out - if (b & (b-1)) isn't zero, b isn't a power of two */ - if ( b & (b-1) != 0 ) { + if ((b & (b-1)) != 0) { return 0; } for (x = 1; x < DIGIT_BIT; x++) { @@ -110,5 +110,5 @@ int mp_div_d (mp_int * a, mp_digit b, mp_int * c, mp_digit * d) #endif /* $Source: /root/tcl/repos-to-convert/tcl/libtommath/bn_mp_div_d.c,v $ */ -/* $Revision: 1.2 $ */ -/* $Date: 2006/12/01 00:31:32 $ */ +/* $Revision: 1.3 $ */ +/* $Date: 2006/12/01 05:47:47 $ */ -- cgit v0.12