diff options
author | das <das> | 2006-12-01 05:47:47 (GMT) |
---|---|---|
committer | das <das> | 2006-12-01 05:47:47 (GMT) |
commit | dd668a7179b618310c592544de255dce3dba9ca3 (patch) | |
tree | 048d31f560bbaac1976cbedcddc48ab5c86e758a /libtommath | |
parent | e2b2a49eaf9b2b79351be7d294a10704a3e0061d (diff) | |
download | tcl-dd668a7179b618310c592544de255dce3dba9ca3.zip tcl-dd668a7179b618310c592544de255dce3dba9ca3.tar.gz tcl-dd668a7179b618310c592544de255dce3dba9ca3.tar.bz2 |
fix gcc warning: "suggest parentheses around comparison in operand of &"
Diffstat (limited to 'libtommath')
-rw-r--r-- | libtommath/bn_mp_div_d.c | 6 |
1 files 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 $ */ |