Commit 41eb5ca0 authored by David Crawshaw's avatar David Crawshaw

cmd/link: typo in error message

Change-Id: Ideeef320d6a01a10c89524b6d895a64210a60f64
Reviewed-on: https://go-review.googlesource.com/19693Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: David Crawshaw <crawshaw@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 3a11c8d3
...@@ -951,7 +951,7 @@ func defgotype(gotype *LSym) *DWDie { ...@@ -951,7 +951,7 @@ func defgotype(gotype *LSym) *DWDie {
} }
if !strings.HasPrefix(gotype.Name, "type.") { if !strings.HasPrefix(gotype.Name, "type.") {
Diag("dwarf: type name doesn't start with \".type\": %s", gotype.Name) Diag("dwarf: type name doesn't start with \"type.\": %s", gotype.Name)
return mustFind(&dwtypes, "<unspecified>") return mustFind(&dwtypes, "<unspecified>")
} }
......
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