about summary refs log tree commit diff homepage
path: root/test/Feature/WithLibc.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/WithLibc.c')
-rw-r--r--test/Feature/WithLibc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/WithLibc.c b/test/Feature/WithLibc.c
index cefef577..0eca8213 100644
--- a/test/Feature/WithLibc.c
+++ b/test/Feature/WithLibc.c
@@ -8,7 +8,7 @@ int main() {
   char buf[4];
   char *s = "foo";
 
-  klee_make_symbolic(buf, sizeof buf);
+  klee_make_symbolic(buf, sizeof buf, "buf");
   buf[3] = 0;
 
   if (strcmp(buf, s)==0) {