summaryrefslogtreecommitdiff
path: root/mpz/cfdiv_r_2exp.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2009-12-28 16:33:49 +0100
committerTorbjorn Granlund <tege@gmplib.org>2009-12-28 16:33:49 +0100
commitc8e3713b3ff9ce41596c21b7a91e954eb3a145be (patch)
tree59b781d937205731180ff9adb4469639326c480a /mpz/cfdiv_r_2exp.c
parent2da4e1d48ab00b6bf530710877d67284b88ef0e8 (diff)
downloadgmp-c8e3713b3ff9ce41596c21b7a91e954eb3a145be.tar.gz
New public functions mpn_com and mpn_neg. (Were internal and with _n suffix.)
Diffstat (limited to 'mpz/cfdiv_r_2exp.c')
-rw-r--r--mpz/cfdiv_r_2exp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/cfdiv_r_2exp.c b/mpz/cfdiv_r_2exp.c
index 64bb7eeb4..5611ad675 100644
--- a/mpz/cfdiv_r_2exp.c
+++ b/mpz/cfdiv_r_2exp.c
@@ -109,7 +109,7 @@ cfdiv_r_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt, int dir)
/* Ones complement */
i = MIN (abs_usize, limb_cnt+1);
- mpn_com_n (wp, up, i);
+ mpn_com (wp, up, i);
for ( ; i <= limb_cnt; i++)
wp[i] = GMP_NUMB_MAX;