about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2017-02-10 15:37:10 +0000
committerGitHub <noreply@github.com>2017-02-10 15:37:10 +0000
commit901ff8353b61f3c0fc5b060b35af61880307d28b (patch)
tree05ae4d83b023891c48cb8afc7b511066a455431e
parentf2abb4720571cf4905ff9e8dbc5d0cec02b85c08 (diff)
parent37ce2ef0320c69c6765ad3c0f3b7d4f705c45262 (diff)
downloadklee-901ff8353b61f3c0fc5b060b35af61880307d28b.tar.gz
Merge pull request #582 from jirislaby/vararg
Fix Vararg test
-rw-r--r--test/Feature/Vararg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/Vararg.c b/test/Feature/Vararg.c
index 398ba6f8..82fbe4f1 100644
--- a/test/Feature/Vararg.c
+++ b/test/Feature/Vararg.c
@@ -12,7 +12,7 @@ struct triple {
   int first, second, third;
 };
 
-int test1(int x, ...) {
+void test1(int x, ...) {
   va_list ap;
   va_start(ap, x);
   int i32 = va_arg(ap, int);