From: Russ Cox Date: Thu, 7 Aug 2014 12:17:41 +0000 (-0400) Subject: cmd/gc: remove ignored debugging arguments in Fconv print X-Git-Tag: go1.4beta1~893 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=689995a73e7a03038e977b5080666b561173e2b6;p=gostls13.git cmd/gc: remove ignored debugging arguments in Fconv print LGTM=dave R=golang-codereviews, dave CC=golang-codereviews https://golang.org/cl/123880043 --- 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.