summaryrefslogtreecommitdiff
path: root/tests/join2.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-03-06 15:01:05 +0000
committerrpj <rpj>2011-03-06 15:01:05 +0000
commita39dab139b7c301ffd5a5592c292123c54e686cd (patch)
tree73aeb7a868f7c075de9ec43344d17d21f99763f9 /tests/join2.c
parent1183e5acfa10c7bda1dc39034d6e2fa6dec6016f (diff)
More 64 bit cast fixups
Diffstat (limited to 'tests/join2.c')
-rw-r--r--tests/join2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/join2.c b/tests/join2.c
index 82682a8..b3b85ee 100644
--- a/tests/join2.c
+++ b/tests/join2.c
@@ -60,7 +60,7 @@ main(int argc, char * argv[])
for (i = 0; i < 4; i++)
{
- assert(pthread_join(id[i], (void *) &result) == 0);
+ assert(pthread_join(id[i], &result) == 0);
assert((int)(size_t)result == i);
}