summaryrefslogtreecommitdiff
path: root/tests/semaphore1.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/semaphore1.c')
-rw-r--r--tests/semaphore1.c2
1 files changed, 1 insertions, 1 deletions
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);