summaryrefslogtreecommitdiff
path: root/mpz/fac_ui.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2006-04-30 00:28:27 +0200
committertege <tege@gmplib.org>2006-04-30 00:28:27 +0200
commit330e8d39b2dc1c2338f7600b36729b8cdca7acd7 (patch)
tree84d25ec68f02b6862fbe3dc1ffa857466ee4f5e7 /mpz/fac_ui.c
parent2a819fcaac8485a4abb9d9a4148ec610b79ce879 (diff)
downloadgmp-330e8d39b2dc1c2338f7600b36729b8cdca7acd7.tar.gz
Use GMP_LIMB_BITS consistently.
Diffstat (limited to 'mpz/fac_ui.c')
-rw-r--r--mpz/fac_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/fac_ui.c b/mpz/fac_ui.c
index da5bc7933..b73941d6b 100644
--- a/mpz/fac_ui.c
+++ b/mpz/fac_ui.c
@@ -64,7 +64,7 @@ static void ap_product_small _PROTO ((mpz_t ret, mp_limb_t start, mp_limb_t step
} while (0)
-#if BITS_PER_ULONG == BITS_PER_MP_LIMB
+#if BITS_PER_ULONG == GMP_LIMB_BITS
#define BSWAP_ULONG(x,y) BSWAP_LIMB(x,y)
#endif