summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-05-30 14:26:34 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-05-30 14:26:34 +0000
commitad988f2360ad2b59b54769b283b8c2f7bf04a13f (patch)
tree59cc0177214e4cf0c7f2a0e0c42fbd9284be71f2
parent8a96712b7005b9a561bf6bf3144678217bb8c67b (diff)
downloadmpfr-ad988f2360ad2b59b54769b283b8c2f7bf04a13f.tar.gz
[src/sub1.c] Forgot a \n in a log message.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/ubf@10391 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--src/sub1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sub1.c b/src/sub1.c
index 6a5a910a6..d81b2617d 100644
--- a/src/sub1.c
+++ b/src/sub1.c
@@ -164,7 +164,7 @@ mpfr_sub1 (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_rnd_t rnd_mode)
/* We need to take the value preceding |a|. We can't use
mpfr_nexttozero due to a possible out-of-range exponent.
But this will allow us to have more specific code. */
- MPFR_LOG_MSG (("correcting the value of a", 0));
+ MPFR_LOG_MSG (("correcting the value of a\n", 0));
sh = (mpfr_prec_t) an * GMP_NUMB_BITS - aq;
mpn_sub_1 (ap, ap, an, MPFR_LIMB_ONE << sh);
if (MPFR_UNLIKELY (MPFR_LIMB_MSB (ap[an-1]) == 0))