aboutsummaryrefslogtreecommitdiff
path: root/prog/generation.go
diff options
context:
space:
mode:
Diffstat (limited to 'prog/generation.go')
-rw-r--r--prog/generation.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/prog/generation.go b/prog/generation.go
index df31f0271..dcb8dc2ac 100644
--- a/prog/generation.go
+++ b/prog/generation.go
@@ -14,7 +14,7 @@ func (target *Target) Generate(rs rand.Source, ncalls int, ct *ChoiceTable) *Pro
Target: target,
}
r := newRand(target, rs)
- s := newState(target, ct)
+ s := newState(target, ct, nil)
for len(p.Calls) < ncalls {
calls := r.generateCall(s, p)
for _, c := range calls {