summaryrefslogtreecommitdiff
path: root/threading_pthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'threading_pthread.c')
-rw-r--r--threading_pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threading_pthread.c b/threading_pthread.c
index 942ddbfe..3ef22b26 100644
--- a/threading_pthread.c
+++ b/threading_pthread.c
@@ -21,7 +21,7 @@
#include "threading.h"
intptr_t
-thread_start (void (*fn)(uintptr_t ctx), uintptr_t ctx) {
+thread_start (void (*fn)(void *ctx), void *ctx) {
pthread_t tid;
pthread_attr_t attr;
int s = pthread_attr_init (&attr);