aboutsummaryrefslogtreecommitdiffstats
path: root/vm/adb
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-05-05 16:00:01 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-05-05 16:00:01 +0200
commit78b251cbd7147f7550d3ac1ac36f7ccaa6c47161 (patch)
treebe940dd891027812db6aa18ff127d1cf56ea63e0 /vm/adb
parent31ea20ce83aa7ca21b4d0ef28d8375a058292a5a (diff)
all: fix too long lines
Not sure why I have not seen warnings about these lines on another machine...
Diffstat (limited to 'vm/adb')
-rw-r--r--vm/adb/adb.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/adb/adb.go b/vm/adb/adb.go
index d2fc73c76..21fd5f741 100644
--- a/vm/adb/adb.go
+++ b/vm/adb/adb.go
@@ -382,7 +382,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) {
var tty io.ReadCloser
var err error
if inst.console == "adb" {