From 689995a73e7a03038e977b5080666b561173e2b6 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 7 Aug 2014 08:17:41 -0400 Subject: [PATCH] cmd/gc: remove ignored debugging arguments in Fconv print LGTM=dave R=golang-codereviews, dave CC=golang-codereviews https://golang.org/cl/123880043 --- src/cmd/gc/mparith1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/gc/mparith1.c b/src/cmd/gc/mparith1.c index 1519caec7a..d33a81e09d 100644 --- a/src/cmd/gc/mparith1.c +++ b/src/cmd/gc/mparith1.c @@ -591,7 +591,7 @@ Fconv(Fmt *fp) d = mpgetflt(fvp); if(d >= 0 && (fp->flags & FmtSign)) fmtprint(fp, "+"); - return fmtprint(fp, "%g", d, exp, fvp); + return fmtprint(fp, "%g", d); } // very out of range. compute decimal approximation by hand. -- 2.48.1