From 4ff367ac3ce3d502721a1430b8e5f88cc3a4225c Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Fri, 2 Aug 2013 16:25:49 +1000 Subject: [PATCH] go.tools/ssa: fix windows build R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12320043 --- ssa/stdlib_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssa/stdlib_test.go b/ssa/stdlib_test.go index 070a1215..9d8ad2ce 100644 --- a/ssa/stdlib_test.go +++ b/ssa/stdlib_test.go @@ -24,7 +24,7 @@ const debugMode = false func allPackages() []string { var pkgs []string - root := filepath.Join(runtime.GOROOT(), "src/pkg") + "/" + root := filepath.Join(runtime.GOROOT(), "src/pkg") + string(os.PathSeparator) filepath.Walk(root, func(path string, info os.FileInfo, err error) error { // Prune the search if we encounter any of these names: switch filepath.Base(path) {