summaryrefslogtreecommitdiff
path: root/mpz/powm.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2009-12-06 20:50:26 +0100
committerTorbjorn Granlund <tege@gmplib.org>2009-12-06 20:50:26 +0100
commit7fc96bcea634f083836e293ed7567bbbdb2f2f8e (patch)
tree29c8e85b1a07327a5b1ee030f239d827a89f51bd /mpz/powm.c
parent6d2952b1a4efed5bec9b0f46a08fe6bda348b50a (diff)
downloadgmp-7fc96bcea634f083836e293ed7567bbbdb2f2f8e.tar.gz
Globally: Rename *mullow* to *mullo*, *MULLOW* to *MULLO*.
Diffstat (limited to 'mpz/powm.c')
-rw-r--r--mpz/powm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/powm.c b/mpz/powm.c
index 7cea47dd6..771025f8f 100644
--- a/mpz/powm.c
+++ b/mpz/powm.c
@@ -229,7 +229,7 @@ pow (mpz_srcptr b, mpz_srcptr e, mpz_srcptr m, mpz_ptr r)
mpn_sub (r2, r2, ncnt, rp, nodd > ncnt ? ncnt : nodd);
xp = tp + 2 * n;
- mpn_mullow_n (xp, odd_inv_2exp, r2, ncnt);
+ mpn_mullo_n (xp, odd_inv_2exp, r2, ncnt);
if (cnt != 0)
xp[ncnt - 1] &= (CNST_LIMB(1) << cnt) - 1;