diff options
Diffstat (limited to 'tests/condvar2_1.c')
-rw-r--r-- | tests/condvar2_1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/condvar2_1.c b/tests/condvar2_1.c index 1dd106f..2cc563a 100644 --- a/tests/condvar2_1.c +++ b/tests/condvar2_1.c @@ -105,7 +105,7 @@ main() { int i; pthread_t t[NUMTHREADS + 1]; - int result = 0; + void* result = (void*)0; struct _timeb currSysTime; const DWORD NANOSEC_PER_MILLISEC = 1000000; @@ -133,7 +133,7 @@ main() for (i = 1; i <= NUMTHREADS; i++) { assert(pthread_join(t[i], (void *) &result) == 0); - assert(result == i); + assert((int)(size_t)result == i); } { |