Commit d3ff5090 authored by Russ Cox's avatar Russ Cox

cmd/compile: fix format error

Found by pending CL to make cmd/vet auto-detect printf wrappers.

Change-Id: I6b5ba8f9c301dd2d7086c152cf2e54a68b012208
Reviewed-on: https://go-review.googlesource.com/109345
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: default avatarRobert Griesemer <gri@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 50a58396
......@@ -1380,7 +1380,7 @@ func (w *exportWriter) localIdent(s *types.Sym, v int32) {
}
if i := strings.LastIndex(name, "."); i >= 0 {
Fatalf("unexpected dot in identifier:", name)
Fatalf("unexpected dot in identifier: %v", name)
}
if v > 0 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment