From 78b251cbd7147f7550d3ac1ac36f7ccaa6c47161 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 5 May 2018 16:00:01 +0200 Subject: all: fix too long lines Not sure why I have not seen warnings about these lines on another machine... --- sys/syz-extract/fetch.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/syz-extract/fetch.go b/sys/syz-extract/fetch.go index 77410dd55..0a43e4a9e 100644 --- a/sys/syz-extract/fetch.go +++ b/sys/syz-extract/fetch.go @@ -17,7 +17,8 @@ import ( "github.com/google/syzkaller/pkg/osutil" ) -func extract(info *compiler.ConstInfo, cc string, args []string, addSource string, declarePrintf bool) (map[string]uint64, map[string]bool, error) { +func extract(info *compiler.ConstInfo, cc string, args []string, addSource string, declarePrintf bool) ( + map[string]uint64, map[string]bool, error) { data := &CompileData{ AddSource: addSource, Defines: info.Defines, -- cgit mrf-deployment