From ef178feb73392dd89678552d6b6ef126a014bf85 Mon Sep 17 00:00:00 2001 From: vlefevre Date: Fri, 24 Feb 2012 11:59:09 +0000 Subject: =?UTF-8?q?Corrected=20a=20typo=20in=20MPFR=5FLOG=5FFUNC=20of=20ad?= =?UTF-8?q?d=5Fd.c,=20add=5Fui.c=20and=20mul=5Fd.c=20(mpfr=5Fget=5Fprec=20?= =?UTF-8?q?=E2=86=92=20mpfr=5Flog=5Fprec),=20fixing=20bug=2013933.=20The?= =?UTF-8?q?=20consequence=20was=20random=20freezes=20(on=20the=20same=20bi?= =?UTF-8?q?nary)=20with=20dynamic=20linking=20(and=20just=20more=20memory?= =?UTF-8?q?=20with=20static=20linking=20to=20the=20MPFR=20library)=20when?= =?UTF-8?q?=20logging=20was=20used.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8043 280ebfd0-de03-0410-8827-d642c229c3f4 --- src/add_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/add_ui.c') diff --git a/src/add_ui.c b/src/add_ui.c index 2215e390e..4d20592f7 100644 --- a/src/add_ui.c +++ b/src/add_ui.c @@ -29,7 +29,7 @@ mpfr_add_ui (mpfr_ptr y, mpfr_srcptr x, unsigned long int u, mpfr_rnd_t rnd_mode MPFR_LOG_FUNC (("x[%Pu]=%.*Rg u=%d rnd=%d", mpfr_get_prec(x), mpfr_log_prec, x, u, rnd_mode), - ("y[%Pu]=%.*Rg", mpfr_get_prec (y), mpfr_get_prec, y)); + ("y[%Pu]=%.*Rg", mpfr_get_prec (y), mpfr_log_prec, y)); if (MPFR_LIKELY(u != 0) ) /* if u=0, do nothing */ { -- cgit v1.2.1