summaryrefslogtreecommitdiff
path: root/mpz/kronsz.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpz/kronsz.c')
-rw-r--r--mpz/kronsz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/kronsz.c b/mpz/kronsz.c
index 2c1355750..af98505e4 100644
--- a/mpz/kronsz.c
+++ b/mpz/kronsz.c
@@ -115,7 +115,7 @@ mpz_kronecker_si_zi (a, b)
if ((a & 1) == 0)
{
count_trailing_zeros (twos, a);
- ((unsigned long) a) >>= twos;
+ a = ((unsigned long) a) >> twos;
result_bit1 ^= JACOBI_TWOS_U_BIT1 (twos, b_low);
}