diff options
Diffstat (limited to 'test/Feature/CompressedExprLogging.c')
-rw-r--r-- | test/Feature/CompressedExprLogging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/CompressedExprLogging.c b/test/Feature/CompressedExprLogging.c index 425c4551..ba20428d 100644 --- a/test/Feature/CompressedExprLogging.c +++ b/test/Feature/CompressedExprLogging.c @@ -16,7 +16,7 @@ int constantArr[16] = {1 << 0, 1 << 1, 1 << 2, 1 << 3, 1 << 4, 1 << 5, int main() { char buf[4]; - klee_make_symbolic(buf, sizeof buf); + klee_make_symbolic(buf, sizeof buf, "buf"); buf[1] = 'a'; |