Skip to content

Commit 68ed59b

Browse files
dmitshurgopherbot
authored andcommitted
windows/svc: fix printf(var) mistake detected by latest printf checker
For golang/go#69267. Change-Id: Ie240b5c826bb96c0e2021a7e99a3c0f973f0a0e1 Reviewed-on: https://go-review.googlesource.com/c/sys/+/610940 Reviewed-by: Tim King <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent c08bc6e commit 68ed59b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

windows/svc/svc_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ func TestIsWindowsServiceWhenParentExits(t *testing.T) {
178178
child.Env = append(os.Environ(), "GO_WANT_HELPER_PROCESS=child")
179179
err := child.Start()
180180
if err != nil {
181-
fmt.Fprintf(os.Stderr, fmt.Sprintf("child start failed: %v", err))
181+
fmt.Fprintf(os.Stderr, "child start failed: %v", err)
182182
os.Exit(1)
183183
}
184184
os.Exit(0)

0 commit comments

Comments
 (0)