]> Cypherpunks repositories - gostls13.git/commitdiff
os/exec: gofmt
authorTobias Klauser <tklauser@distanz.ch>
Wed, 30 May 2018 19:54:36 +0000 (21:54 +0200)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 30 May 2018 19:57:39 +0000 (19:57 +0000)
CL 109361 introduced some changes which were not properly gofmt'ed.
Because the CL was sent via Github no gofmt checks were performed
on it (cf. #24946, #18548).

Change-Id: I207065f01161044c420e272f4fd112e0a59be259
Reviewed-on: https://go-review.googlesource.com/115356
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/os/exec/lp_windows_test.go

index 64d7dca2e85f12a65829eb876df08c5d09ea02c5..59b5f1c2c7ced22093c61febe95549a92afc82cd 100644 (file)
@@ -117,7 +117,7 @@ func createEnv(dir, PATH, PATHEXT string) []string {
                dirs[i] = filepath.Join(dir, dirs[i])
        }
        path := strings.Join(dirs, ";")
-       env = updateEnv(env, "PATH", os.Getenv("SystemRoot") + "/System32;" + path)
+       env = updateEnv(env, "PATH", os.Getenv("SystemRoot")+"/System32;"+path)
        return env
 }