aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vmware
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vmware')
-rw-r--r--vm/vmware/vmware.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/vmware/vmware.go b/vm/vmware/vmware.go
index 25f4eb4ec..ebfb995bb 100644
--- a/vm/vmware/vmware.go
+++ b/vm/vmware/vmware.go
@@ -17,6 +17,7 @@ import (
"github.com/google/syzkaller/pkg/config"
"github.com/google/syzkaller/pkg/log"
"github.com/google/syzkaller/pkg/osutil"
+ "github.com/google/syzkaller/pkg/report"
"github.com/google/syzkaller/vm/vmimpl"
)
@@ -217,6 +218,6 @@ func (inst *instance) Run(timeout time.Duration, stop <-chan bool, command strin
return vmimpl.Multiplex(cmd, merger, dmesg, timeout, stop, inst.closed, inst.debug)
}
-func (inst *instance) Diagnose() ([]byte, bool) {
+func (inst *instance) Diagnose(rep *report.Report) ([]byte, bool) {
return nil, false
}