From e1de8e3c33257b4e7d6b98767a67414efc31b6c7 Mon Sep 17 00:00:00 2001 From: rpj Date: Fri, 4 Mar 2011 08:03:46 +0000 Subject: Casting fixups --- tests/semaphore1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/semaphore1.c') diff --git a/tests/semaphore1.c b/tests/semaphore1.c index f89a430..59e6aee 100644 --- a/tests/semaphore1.c +++ b/tests/semaphore1.c @@ -122,7 +122,7 @@ main() int result; assert(pthread_create(&t, NULL, thr, NULL) == 0); - assert(pthread_join(t, (void **)&result) == 0); + assert(pthread_join(t, (void *)&result) == 0); assert(result == 0); assert(sem_init(&s, PTHREAD_PROCESS_PRIVATE, 0) == 0); -- cgit v1.2.3