about summary refs log tree commit diff homepage
path: root/test/Feature/ByteSwap.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/ByteSwap.c')
-rw-r--r--test/Feature/ByteSwap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/ByteSwap.c b/test/Feature/ByteSwap.c
index b6500a13..a2228905 100644
--- a/test/Feature/ByteSwap.c
+++ b/test/Feature/ByteSwap.c
@@ -8,7 +8,7 @@
 int main() {
   
   uint32_t n = 0;
-  klee_make_symbolic(&n, sizeof(n));
+  klee_make_symbolic(&n, sizeof(n), "n");
   
   uint32_t h = ntohl(n);
   assert(htonl(h) == n);