diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-05-05 16:00:01 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-05-05 16:00:01 +0200 |
| commit | 78b251cbd7147f7550d3ac1ac36f7ccaa6c47161 (patch) | |
| tree | be940dd891027812db6aa18ff127d1cf56ea63e0 /vm/gce | |
| parent | 31ea20ce83aa7ca21b4d0ef28d8375a058292a5a (diff) | |
all: fix too long lines
Not sure why I have not seen warnings about
these lines on another machine...
Diffstat (limited to 'vm/gce')
| -rw-r--r-- | vm/gce/gce.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/gce/gce.go b/vm/gce/gce.go index 843072cff..036ffeb8b 100644 --- a/vm/gce/gce.go +++ b/vm/gce/gce.go @@ -198,7 +198,8 @@ func (inst *instance) Copy(hostSrc string) (string, error) { return vmDst, nil } -func (inst *instance) Run(timeout time.Duration, stop <-chan bool, command string) (<-chan []byte, <-chan error, error) { +func (inst *instance) Run(timeout time.Duration, stop <-chan bool, command string) ( + <-chan []byte, <-chan error, error) { conRpipe, conWpipe, err := osutil.LongPipe() if err != nil { return nil, nil, err |
