diff options
Diffstat (limited to 'pkg/repro/repro.go')
| -rw-r--r-- | pkg/repro/repro.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/repro/repro.go b/pkg/repro/repro.go index 4433c84a9..52f456a83 100644 --- a/pkg/repro/repro.go +++ b/pkg/repro/repro.go @@ -44,7 +44,7 @@ type Stats struct { type context struct { target *targets.Target - reporter report.Reporter + reporter *report.Reporter crashTitle string crashType report.Type instances chan *instance @@ -63,7 +63,7 @@ type instance struct { executorBin string } -func Run(crashLog []byte, cfg *mgrconfig.Config, features *host.Features, reporter report.Reporter, +func Run(crashLog []byte, cfg *mgrconfig.Config, features *host.Features, reporter *report.Reporter, vmPool *vm.Pool, vmIndexes []int) (*Result, *Stats, error) { if len(vmIndexes) == 0 { return nil, nil, fmt.Errorf("no VMs provided") |
