about summary refs log tree commit diff homepage
path: root/examples/regexp/Regexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/regexp/Regexp.c')
-rw-r--r--examples/regexp/Regexp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/regexp/Regexp.c b/examples/regexp/Regexp.c
index f3e751f9..a48ea928 100644
--- a/examples/regexp/Regexp.c
+++ b/examples/regexp/Regexp.c
@@ -53,7 +53,7 @@ int main() {
   char re[SIZE];
   
   // Make the input symbolic. 
-  klee_make_symbolic_name(re, sizeof re, "re");
+  klee_make_symbolic(re, sizeof re, "re");
 
   // Try to match against a constant string "hello".
   match(re, "hello");