Skip to content

Commit 8d3631f

Browse files
cuiweixiegopherbot
authored andcommitted
cmd/nm: use print-style not printf-style
Change-Id: Ic977026a99a825954117902051e59928de9ccbdb Reviewed-on: https://go-review.googlesource.com/c/go/+/435947 Reviewed-by: Cherry Mui <[email protected]> Run-TryBot: Cherry Mui <[email protected]> Run-TryBot: Ian Lance Taylor <[email protected]> Run-TryBot: xie cui <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent a57639a commit 8d3631f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd/nm/nm.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const helpText = `usage: go tool nm [options] file...
2929
`
3030

3131
func usage() {
32-
fmt.Fprintf(os.Stderr, helpText)
32+
fmt.Fprint(os.Stderr, helpText)
3333
os.Exit(2)
3434
}
3535

0 commit comments

Comments
 (0)