gofmt -s misc src

R=golang-dev, bradfitz, gri
CC=golang-dev
https://golang.org/cl/5451079
This commit is contained in:
Russ Cox 2011-12-02 14:14:25 -05:00
parent 0dab624b70
commit dcf1d7bc0e
30 changed files with 325 additions and 325 deletions

View file

@ -1304,7 +1304,7 @@ func (c *typeConv) FuncType(dtype *dwarf.FuncType) *FuncType {
var gr []*ast.Field
if _, ok := dtype.ReturnType.(*dwarf.VoidType); !ok && dtype.ReturnType != nil {
r = c.Type(dtype.ReturnType)
gr = []*ast.Field{&ast.Field{Type: r.Go}}
gr = []*ast.Field{{Type: r.Go}}
}
return &FuncType{
Params: p,