summaryrefslogtreecommitdiff
path: root/tests/mutex7r.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/mutex7r.c
parent275d03d3af64e4f5e1769584214f6fccc303456e (diff)
Rework pthread_join result arg casting
Diffstat (limited to 'tests/mutex7r.c')
-rw-r--r--tests/mutex7r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mutex7r.c b/tests/mutex7r.c
index 7a1c206..1ce1aa6 100644
--- a/tests/mutex7r.c
+++ b/tests/mutex7r.c
@@ -73,7 +73,7 @@ int
main()
{
pthread_t t;
- int result = 0;
+ void* result = (void*)0;
int mxType = -1;
assert(pthread_mutexattr_init(&mxAttr) == 0);
@@ -86,7 +86,7 @@ main()
assert(pthread_create(&t, NULL, locker, NULL) == 0);
assert(pthread_join(t, (void *) &result) == 0);
- assert(result == 555);
+ assert((int)(size_t)result == 555);
assert(lockCount == 2);