1
0
mirror of https://github.com/golang/go synced 2024-09-25 11:20:13 -06:00

cmd/link: typo in error message

Change-Id: Ideeef320d6a01a10c89524b6d895a64210a60f64
Reviewed-on: https://go-review.googlesource.com/19693
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: David Crawshaw <crawshaw@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
David Crawshaw 2016-02-17 09:41:12 -05:00
parent 3a11c8d319
commit 41eb5ca089

View File

@ -951,7 +951,7 @@ func defgotype(gotype *LSym) *DWDie {
}
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>")
}