summaryrefslogtreecommitdiff
path: root/tests/mutex6e.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-03-04 08:03:46 +0000
committerrpj <rpj>2011-03-04 08:03:46 +0000
commite1de8e3c33257b4e7d6b98767a67414efc31b6c7 (patch)
tree1942d5037d1cf5077c62f2dce89cf60cd9f96399 /tests/mutex6e.c
parente470da85f7b9426eea03d66086c2822bf29e9b05 (diff)
Casting fixups
Diffstat (limited to 'tests/mutex6e.c')
-rw-r--r--tests/mutex6e.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mutex6e.c b/tests/mutex6e.c
index 8af9274..c17c920 100644
--- a/tests/mutex6e.c
+++ b/tests/mutex6e.c
@@ -86,7 +86,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);