summaryrefslogtreecommitdiff
path: root/mpz/tdiv_r.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2000-04-15 23:27:05 +0200
committertege <tege@gmplib.org>2000-04-15 23:27:05 +0200
commit61cd88f033b2e129e6193aac7013d47222797e79 (patch)
tree61df70fc542f44fd59ed7dedff599ee3da6ed0b7 /mpz/tdiv_r.c
parent506915ea0cbd96973be32dd8d656b60a0803f081 (diff)
downloadgmp-61cd88f033b2e129e6193aac7013d47222797e79.tar.gz
Fix typo.
Diffstat (limited to 'mpz/tdiv_r.c')
-rw-r--r--mpz/tdiv_r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpz/tdiv_r.c b/mpz/tdiv_r.c
index 8fe5bf6c9..76bb134e8 100644
--- a/mpz/tdiv_r.c
+++ b/mpz/tdiv_r.c
@@ -36,7 +36,7 @@ mpz_tdiv_r (rem, num, den)
mp_size_t ql;
mp_size_t ns, ds, nl, dl;
mp_ptr np, dp, qp, rp;
- TMP_DECL (marker)
+ TMP_DECL (marker);
ns = SIZ (num);
ds = SIZ (den);
@@ -89,7 +89,7 @@ mpz_tdiv_r (rem, num, den)
np = tp;
}
- mpn_tdiv_qr (qp, rp, 0L, np, nl, dp, dl);
+ mpn_tdiv_qr (qp, rp, 0L, np, nl, dp, dl);
MPN_NORMALIZE (rp, dl);