summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_count_bits.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_count_bits.c')
-rw-r--r--libtommath/bn_mp_count_bits.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtommath/bn_mp_count_bits.c b/libtommath/bn_mp_count_bits.c
index 7424581..4530c92 100644
--- a/libtommath/bn_mp_count_bits.c
+++ b/libtommath/bn_mp_count_bits.c
@@ -31,9 +31,9 @@ int mp_count_bits(const mp_int *a)
/* take the last digit and count the bits in it */
q = a->dp[a->used - 1];
- while (q > ((mp_digit) 0)) {
+ while (q > (mp_digit)0) {
++r;
- q >>= ((mp_digit) 1);
+ q >>= (mp_digit)1;
}
return r;
}