summaryrefslogtreecommitdiff
path: root/tests/mutex7r.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mutex7r.c')
-rw-r--r--tests/mutex7r.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mutex7r.c b/tests/mutex7r.c
index f9e5ff0..7a1c206 100644
--- a/tests/mutex7r.c
+++ b/tests/mutex7r.c
@@ -85,7 +85,7 @@ main()
assert(pthread_create(&t, NULL, locker, NULL) == 0);
- assert(pthread_join(t, (void **) &result) == 0);
+ assert(pthread_join(t, (void *) &result) == 0);
assert(result == 555);
assert(lockCount == 2);