summaryrefslogtreecommitdiff
path: root/mini-gmp/tests/t-signed.c
diff options
context:
space:
mode:
Diffstat (limited to 'mini-gmp/tests/t-signed.c')
-rw-r--r--mini-gmp/tests/t-signed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mini-gmp/tests/t-signed.c b/mini-gmp/tests/t-signed.c
index 21c907f77..3fe54a2fc 100644
--- a/mini-gmp/tests/t-signed.c
+++ b/mini-gmp/tests/t-signed.c
@@ -100,7 +100,7 @@ try_op_si (int c)
break;
oi = (si - c) * 2 + c; /* c * (2^K - 1) */
- mpz_mul_si (oz, sz, 2*c);
+ mpz_mul_si (oz, sz, 2*c);
if (c == -1)
mpz_ui_sub (oz, 1, oz); /* oz = sz * 2 + 1 */
else