From 9e0846e8a4beebff36c72f03479a7db775b5144e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 7 May 2018 17:59:06 +0200 Subject: all: get rid of underscores in identifiers Underscores are against Go coding style. Update #538 --- tools/syz-crush/crush.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/syz-crush') diff --git a/tools/syz-crush/crush.go b/tools/syz-crush/crush.go index d65e1bc5b..531b43888 100644 --- a/tools/syz-crush/crush.go +++ b/tools/syz-crush/crush.go @@ -44,7 +44,7 @@ func main() { if err != nil { log.Fatalf("%v", err) } - reporter, err := report.NewReporter(cfg.TargetOS, cfg.Kernel_Src, + reporter, err := report.NewReporter(cfg.TargetOS, cfg.KernelSrc, filepath.Dir(cfg.Vmlinux), nil, cfg.ParsedIgnores) if err != nil { log.Fatalf("%v", err) -- cgit mrf-deployment