cmd/go: fix build

This was missed in c3b45d0dc5c0

R=golang-dev
CC=golang-dev
https://golang.org/cl/12379043
This commit is contained in:
Brad Fitzpatrick 2013-08-02 14:28:52 -07:00
parent bbf1430021
commit 7acf9e93de

View file

@ -25,6 +25,6 @@ func httpsOrHTTP(importPath string) (string, io.ReadCloser, error) {
return "", nil, errHTTP
}
func parseMetaGoImports(r io.Reader) (imports []metaImport) {
func parseMetaGoImports(r io.Reader) ([]metaImport, error) {
panic("unreachable")
}