aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/common/94 threads/threadprog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/94 threads/threadprog.c b/test cases/common/94 threads/threadprog.c
index 19130d5..19f35e9 100644
--- a/test cases/common/94 threads/threadprog.c
+++ b/test cases/common/94 threads/threadprog.c
@@ -3,7 +3,7 @@
#include<windows.h>
#include<stdio.h>
-DWORD WINAPI thread_func(void) {
+DWORD WINAPI thread_func(void *arg) {
printf("Printing from a thread.\n");
return 0;
}