Skip to content

Commit 7ea2c8c

Browse files
tklauserbradfitz
authored andcommitted
os/exec: gofmt
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 <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 323c858 commit 7ea2c8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/os/exec/lp_windows_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func createEnv(dir, PATH, PATHEXT string) []string {
117117
dirs[i] = filepath.Join(dir, dirs[i])
118118
}
119119
path := strings.Join(dirs, ";")
120-
env = updateEnv(env, "PATH", os.Getenv("SystemRoot") + "/System32;" + path)
120+
env = updateEnv(env, "PATH", os.Getenv("SystemRoot")+"/System32;"+path)
121121
return env
122122
}
123123

0 commit comments

Comments
 (0)