summaryrefslogtreecommitdiffhomepage
path: root/cmd
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-08-10 13:29:43 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-08-10 13:29:43 +0200
commitbe2e08dd2ec940dfffb1b088a8544d182ea02583 (patch)
tree299c6718a14d3ef97566e6cee69d470f36520063 /cmd
parent37747e7a968420ad384a341a2895d55ac327cc5c (diff)
Prefer %s
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mfmt/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mfmt/main.go b/cmd/mfmt/main.go
index 2c9b239..b8e0722 100644
--- a/cmd/mfmt/main.go
+++ b/cmd/mfmt/main.go
@@ -172,6 +172,6 @@ func intlen(v int) int {
}
func warn(e error) {
- fmt.Fprintf(os.Stderr, "%s: %+v\n", filepath.Base(os.Args[0]), e)
+ fmt.Fprintf(os.Stderr, "%s: %s\n", filepath.Base(os.Args[0]), e)
rv = 1
}