diff options
Diffstat (limited to 'tests/mutex6r.c')
-rw-r--r-- | tests/mutex6r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mutex6r.c b/tests/mutex6r.c index cc1a780..85bb6bd 100644 --- a/tests/mutex6r.c +++ b/tests/mutex6r.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); |