diff options
author | rpj <rpj> | 2011-03-06 15:01:05 +0000 |
---|---|---|
committer | rpj <rpj> | 2011-03-06 15:01:05 +0000 |
commit | a39dab139b7c301ffd5a5592c292123c54e686cd (patch) | |
tree | 73aeb7a868f7c075de9ec43344d17d21f99763f9 /tests/rwlock6_t.c | |
parent | 1183e5acfa10c7bda1dc39034d6e2fa6dec6016f (diff) |
More 64 bit cast fixups
Diffstat (limited to 'tests/rwlock6_t.c')
-rw-r--r-- | tests/rwlock6_t.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/rwlock6_t.c b/tests/rwlock6_t.c index 4af85d9..6c45b0a 100644 --- a/tests/rwlock6_t.c +++ b/tests/rwlock6_t.c @@ -114,10 +114,10 @@ main() Sleep(500); assert(pthread_create(&rdt2, NULL, rdfunc, (void *)(size_t)2) == 0); - assert(pthread_join(wrt1, (void *) &wr1Result) == 0); - assert(pthread_join(rdt1, (void *) &rd1Result) == 0); - assert(pthread_join(wrt2, (void *) &wr2Result) == 0); - assert(pthread_join(rdt2, (void *) &rd2Result) == 0); + assert(pthread_join(wrt1, &wr1Result) == 0); + assert(pthread_join(rdt1, &rd1Result) == 0); + assert(pthread_join(wrt2, &wr2Result) == 0); + assert(pthread_join(rdt2, &rd2Result) == 0); assert((int)(size_t)wr1Result == 10); assert((int)(size_t)rd1Result == 0); |