summaryrefslogtreecommitdiff
path: root/mpz/n_pow_ui.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2009-12-20 23:54:57 +0100
committerTorbjorn Granlund <tege@gmplib.org>2009-12-20 23:54:57 +0100
commit3ba1597c34eeddef0c820863d98ed9506c8d3e9c (patch)
tree967966420d447f3e630ca1cc85709b7f9c1e03af /mpz/n_pow_ui.c
parenta6426a5313cac3c0fb05358e7d254653222f745f (diff)
downloadgmp-3ba1597c34eeddef0c820863d98ed9506c8d3e9c.tar.gz
Change all bit counts for bignums to use mp_bitcnt_t. Update documentation.
Diffstat (limited to 'mpz/n_pow_ui.c')
-rw-r--r--mpz/n_pow_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/n_pow_ui.c b/mpz/n_pow_ui.c
index 1dfc0cc70..c1d5e902d 100644
--- a/mpz/n_pow_ui.c
+++ b/mpz/n_pow_ui.c
@@ -154,7 +154,7 @@ mpz_n_pow_ui (mpz_ptr r, mp_srcptr bp, mp_size_t bsize, unsigned long int e)
mp_size_t rtwos_limbs, ralloc, rsize;
int rneg, i, cnt, btwos, r_bp_overlap;
mp_limb_t blimb, rl;
- unsigned long rtwos_bits;
+ mp_bitcnt_t rtwos_bits;
#if HAVE_NATIVE_mpn_mul_2
mp_limb_t blimb_low, rl_high;
#else