From 85dfeaf6133e1b74eefed26cf76c3f8631c7dd1d Mon Sep 17 00:00:00 2001 From: rpj Date: Sat, 5 Mar 2011 07:21:12 +0000 Subject: Rework pthread_join result arg casting --- tests/join0.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/join0.c') diff --git a/tests/join0.c b/tests/join0.c index c8367d3..3519f53 100644 --- a/tests/join0.c +++ b/tests/join0.c @@ -53,14 +53,14 @@ int main(int argc, char * argv[]) { pthread_t id; - int result; + void* result = (void*)0; /* Create a single thread and wait for it to exit. */ assert(pthread_create(&id, NULL, func, (void *) 123) == 0); assert(pthread_join(id, (void *) &result) == 0); - assert(result == 123); + assert((int)(size_t)result == 123); /* Success. */ return 0; -- cgit v1.2.3