]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/link: typo in error message
authorDavid Crawshaw <crawshaw@golang.org>
Wed, 17 Feb 2016 14:41:12 +0000 (09:41 -0500)
committerDavid Crawshaw <crawshaw@golang.org>
Sat, 20 Feb 2016 20:16:17 +0000 (20:16 +0000)
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>

src/cmd/link/internal/ld/dwarf.go

index a96b37a4bef32a4558b9543f5f1e314e53445b8c..fb3d8fb2cd1be4671c7935fcd7eb314f9227bf78 100644 (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>")
        }