Index: src/cmd/cgo/ast.go |
=================================================================== |
--- a/src/cmd/cgo/ast.go |
+++ b/src/cmd/cgo/ast.go |
@@ -60,7 +60,7 @@ |
func openProg(name string, p *Prog) { |
var err os.Error |
- p.AST, err = parser.ParseFile(name, nil, parser.ParseComments) |
+ p.AST, err = parser.ParseFile(name, nil, nil, parser.ParseComments) |
if err != nil { |
if list, ok := err.(scanner.ErrorList); ok { |
// If err is a scanner.ErrorList, its String will print just |