aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/syz-crush/crush.go2
-rw-r--r--tools/syz-runtest/runtest.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/syz-crush/crush.go b/tools/syz-crush/crush.go
index 5b2dcfffd..b795becc8 100644
--- a/tools/syz-crush/crush.go
+++ b/tools/syz-crush/crush.go
@@ -166,7 +166,7 @@ func storeCrash(cfg *mgrconfig.Config, rep *report.Report) {
}
}
-func runInstance(cfg *mgrconfig.Config, reporter report.Reporter,
+func runInstance(cfg *mgrconfig.Config, reporter *report.Reporter,
vmPool *vm.Pool, index int, timeout time.Duration, runType FileType) *report.Report {
log.Printf("vm-%v: starting", index)
inst, err := vmPool.Create(index)
diff --git a/tools/syz-runtest/runtest.go b/tools/syz-runtest/runtest.go
index 8ef15af38..98b433b04 100644
--- a/tools/syz-runtest/runtest.go
+++ b/tools/syz-runtest/runtest.go
@@ -132,7 +132,7 @@ func main() {
type Manager struct {
cfg *mgrconfig.Config
vmPool *vm.Pool
- reporter report.Reporter
+ reporter *report.Reporter
requests chan *runtest.RunRequest
checkResult *rpctype.CheckArgs
checkResultReady chan bool