summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2002-04-23 22:21:54 +0200
committertege <tege@gmplib.org>2002-04-23 22:21:54 +0200
commit595cccb413b22885e36cd692e602d4ade33d8130 (patch)
treedd0064551af570fbce206186684052ff7fe533db
parentc11303b0ee611a76e43e2373c474727c3f2ba4db (diff)
downloadgmp-595cccb413b22885e36cd692e602d4ade33d8130.tar.gz
Fix typo.
-rw-r--r--mpz/dive_ui.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mpz/dive_ui.c b/mpz/dive_ui.c
index 61dc6b50f..190a065c4 100644
--- a/mpz/dive_ui.c
+++ b/mpz/dive_ui.c
@@ -41,7 +41,8 @@ mpz_divexact_ui (mpz_ptr dst, mpz_srcptr src, unsigned long divisor)
ALLOC(dz) = 2;
PTR(dz) = dlimbs;
mpz_set_ui (dz, divisor);
- return mpz_divexact (dst, src, dz);
+ mpz_divexact (dst, src, dz);
+ return;
}
size = SIZ(src);