diff options
Diffstat (limited to 'tests/mutex7r.c')
-rw-r--r-- | tests/mutex7r.c | 4 |
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); |