summaryrefslogtreecommitdiff
path: root/src/sysdeps/trypthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysdeps/trypthread.c')
-rw-r--r--src/sysdeps/trypthread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sysdeps/trypthread.c b/src/sysdeps/trypthread.c
index 8e2e459..37cb339 100644
--- a/src/sysdeps/trypthread.c
+++ b/src/sysdeps/trypthread.c
@@ -3,8 +3,9 @@
#include <time.h>
#include <pthread.h>
-void *pstart (void *)
+void *pstart (void *arg)
{
+ (void)arg ;
return 0 ;
}