From 9155bd34e06af07863b681f7125a51829e622950 Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Mon, 30 Nov 2009 21:49:37 +0100 Subject: sanitized thread_start API --- threading_pthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'threading_pthread.c') 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); -- cgit v1.2.3