diff options
Diffstat (limited to 'test/regression/2007-08-16-valid-write-to-freed-object.c')
-rw-r--r-- | test/regression/2007-08-16-valid-write-to-freed-object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regression/2007-08-16-valid-write-to-freed-object.c b/test/regression/2007-08-16-valid-write-to-freed-object.c index 1fca1cca..b3257100 100644 --- a/test/regression/2007-08-16-valid-write-to-freed-object.c +++ b/test/regression/2007-08-16-valid-write-to-freed-object.c @@ -4,7 +4,7 @@ unsigned sym() { unsigned x; - klee_make_symbolic(&x, sizeof x); + klee_make_symbolic(&x, sizeof x, "x"); return x; } |