summaryrefslogtreecommitdiff
path: root/tests/cancel3.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cancel3.c')
-rw-r--r--tests/cancel3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cancel3.c b/tests/cancel3.c
index 050b4ee..ff83c4b 100644
--- a/tests/cancel3.c
+++ b/tests/cancel3.c
@@ -173,7 +173,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
@@ -182,7 +182,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)
{