summaryrefslogtreecommitdiff
path: root/tests/mutex6e.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mutex6e.c')
-rw-r--r--tests/mutex6e.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mutex6e.c b/tests/mutex6e.c
index c17c920..dc6e853 100644
--- a/tests/mutex6e.c
+++ b/tests/mutex6e.c
@@ -74,7 +74,7 @@ int
main()
{
pthread_t t;
- int result = 0;
+ void* result = (void*)0;
int mxType = -1;
assert(pthread_mutexattr_init(&mxAttr) == 0);
@@ -87,7 +87,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);