summaryrefslogtreecommitdiff
path: root/tests/join0.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-03-05 07:21:12 +0000
committerrpj <rpj>2011-03-05 07:21:12 +0000
commit85dfeaf6133e1b74eefed26cf76c3f8631c7dd1d (patch)
tree92e0f60e66f36f1ea1ca9cec4617d7f187698ecf /tests/join0.c
parent275d03d3af64e4f5e1769584214f6fccc303456e (diff)
Rework pthread_join result arg casting
Diffstat (limited to 'tests/join0.c')
-rw-r--r--tests/join0.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/join0.c b/tests/join0.c
index c8367d3..3519f53 100644
--- a/tests/join0.c
+++ b/tests/join0.c
@@ -53,14 +53,14 @@ int
main(int argc, char * argv[])
{
pthread_t id;
- int result;
+ void* result = (void*)0;
/* Create a single thread and wait for it to exit. */
assert(pthread_create(&id, NULL, func, (void *) 123) == 0);
assert(pthread_join(id, (void *) &result) == 0);
- assert(result == 123);
+ assert((int)(size_t)result == 123);
/* Success. */
return 0;