diff options
author | Mark H Weaver <mhw@netris.org> | 2013-07-21 07:20:03 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2013-07-21 07:20:03 -0400 |
commit | d9e7774fda909306ebdaab175684043946b0931b (patch) | |
tree | a99a0f7a7fc70d5740c2d1afb4c7b42e9ca725cb | |
parent | 620c13e8fc02060e0af8fa38398ee4de745d41e9 (diff) | |
download | guile-d9e7774fda909306ebdaab175684043946b0931b.tar.gz |
Fix minor formatting error in 'rationalize'.
* libguile/numbers.c (scm_rationalize): Fix formatting.
-rw-r--r-- | libguile/numbers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/numbers.c b/libguile/numbers.c index b7b91aca1..07bcaad27 100644 --- a/libguile/numbers.c +++ b/libguile/numbers.c @@ -9528,8 +9528,8 @@ SCM_DEFINE (scm_rationalize, "rationalize", 2, 0, 0, interval between the remainders NLO/DLO and NHI/DHI. There are two cases to consider: either NLO/DLO == QLO is an integer (indicated by RLO == 0), or QLO < QHI. */ - if (mpz_sgn (rlo) == 0 || mpz_cmp (qlo, qhi) - != 0) break; + if (mpz_sgn (rlo) == 0 || mpz_cmp (qlo, qhi) != 0) + break; /* Efficiently shuffle variables around for the next iteration. First we shift the recent convergents. */ |