diff options
Diffstat (limited to 'tests/cancel5.c')
-rw-r--r-- | tests/cancel5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cancel5.c b/tests/cancel5.c index 81b5ea0..17497dd 100644 --- a/tests/cancel5.c +++ b/tests/cancel5.c @@ -171,7 +171,7 @@ main () for (i = 1; i <= NUMTHREADS; i++) { int fail = 0; - int result = 0; + void* result = (void*)0; /* * The thread does not contain any cancelation points, so @@ -180,7 +180,7 @@ main () */ assert (pthread_join (t[i], (void *) &result) == 0); - fail = (result != (int) PTHREAD_CANCELED); + fail = ((int)(size_t)result != (int) PTHREAD_CANCELED); if (fail) { |