From 2bf6947d09e64257a0e7e6f716ba7ea05cd1e586 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 17 Jun 2014 11:06:19 -0700 Subject: [PATCH] go.tools/cmd/gotype: fix call site (fix build) TBR=adonovan R=adonovan CC=golang-codereviews https://golang.org/cl/101330046 --- cmd/gotype/gotype.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gotype/gotype.go b/cmd/gotype/gotype.go index efc5a4c16b..2479ecd883 100644 --- a/cmd/gotype/gotype.go +++ b/cmd/gotype/gotype.go @@ -200,7 +200,7 @@ func checkPkgFiles(files []*ast.File) { if *gccgo { var inst gccgoimporter.GccgoInstallation inst.InitFromDriver("gccgo") - conf.Import = inst.GetImporter(nil) + conf.Import = inst.GetImporter(nil, nil) } defer func() {