From be4bf9a2cf3a2536c293a07bb687a072e0db824e Mon Sep 17 00:00:00 2001 From: John Howard Date: Mon, 10 Aug 2015 12:03:17 -0700 Subject: [PATCH] Gofmt on all files Signed-off-by: John Howard --- createprocess.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/createprocess.go b/createprocess.go index 5c45ff52bd..6f0ce91012 100644 --- a/createprocess.go +++ b/createprocess.go @@ -55,7 +55,7 @@ func (p *pipe) Read(b []byte) (int, error) { if err == syscall.ERROR_BROKEN_PIPE { return 0, io.EOF } - return 0, err + return 0, err } return int(read), nil }