diff options
Diffstat (limited to 'tests/refmpz.c')
-rw-r--r-- | tests/refmpz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/refmpz.c b/tests/refmpz.c index b21b5b9fe..29e0a16f8 100644 --- a/tests/refmpz.c +++ b/tests/refmpz.c @@ -67,10 +67,10 @@ refmpz_hamdist (mpz_srcptr x, mpz_srcptr y) refmpn_copy (yp, PTR(y), ysize); if (SIZ(x) < 0) - refmpn_neg_n (xp, xp, tsize); + refmpn_neg (xp, xp, tsize); if (SIZ(x) < 0) - refmpn_neg_n (yp, yp, tsize); + refmpn_neg (yp, yp, tsize); ret = refmpn_hamdist (xp, yp, tsize); |