1
0
mirror of https://github.com/golang/go synced 2024-11-18 00:24:48 -07:00

cmd/pprof: fix help message formatting error

Pprof usage message includes "%" symbols. Misuse of Fprintf caused
the message to be interpreted as a format string and corrupted the usage
message.

Change-Id: I4732b491e2368cff9fdbfe070c125228d6f506fd
Reviewed-on: https://go-review.googlesource.com/115595
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Hana Kim 2018-05-31 13:16:24 -04:00 committed by Hyang-Ah Hana Kim
parent 6b4828a206
commit 424c215739

View File

@ -86,7 +86,7 @@ func (r *readlineUI) print(withColor bool, args ...interface{}) {
if withColor { if withColor {
text = colorize(text) text = colorize(text)
} }
fmt.Fprintf(r.term, text) fmt.Fprint(r.term, text)
} }
// colorize prints the msg in red using ANSI color escapes. // colorize prints the msg in red using ANSI color escapes.