summaryrefslogtreecommitdiff
path: root/mpz/divis_ui.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2010-11-22 22:26:05 +0100
committerTorbjorn Granlund <tege@gmplib.org>2010-11-22 22:26:05 +0100
commit198a1add0f2d556eb75bf2d85c7fceb9fafe9f51 (patch)
treec4fa3b97e983d3f057c0ba032faf39fe303d8f3b /mpz/divis_ui.c
parentd7afa9ea9c7dae166cb6719c3b11db9c96cca519 (diff)
downloadgmp-198a1add0f2d556eb75bf2d85c7fceb9fafe9f51.tar.gz
Whitespace cleanup.
Diffstat (limited to 'mpz/divis_ui.c')
-rw-r--r--mpz/divis_ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpz/divis_ui.c b/mpz/divis_ui.c
index 69dc21cd8..00d0d1f32 100644
--- a/mpz/divis_ui.c
+++ b/mpz/divis_ui.c
@@ -57,10 +57,10 @@ mpz_divisible_ui_p (mpz_srcptr a, unsigned long d)
if (! (d & 1))
{
/* Strip low zero bits to get odd d required by modexact. If d==e*2^n
- and a is divisible by 2^n and by e, then it's divisible by d. */
+ and a is divisible by 2^n and by e, then it's divisible by d. */
if ((ap[0] & LOW_ZEROS_MASK (d)) != 0)
- return 0;
+ return 0;
count_trailing_zeros (twos, (mp_limb_t) d);
d >>= twos;