From e1de8e3c33257b4e7d6b98767a67414efc31b6c7 Mon Sep 17 00:00:00 2001 From: rpj Date: Fri, 4 Mar 2011 08:03:46 +0000 Subject: Casting fixups --- tests/join0.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/join0.c') diff --git a/tests/join0.c b/tests/join0.c index a6cb25d..c8367d3 100644 --- a/tests/join0.c +++ b/tests/join0.c @@ -58,7 +58,7 @@ main(int argc, char * argv[]) /* 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(pthread_join(id, (void *) &result) == 0); assert(result == 123); -- cgit v1.2.3