summaryrefslogtreecommitdiff
path: root/tests/cancel4.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-03-04 08:03:46 +0000
committerrpj <rpj>2011-03-04 08:03:46 +0000
commite1de8e3c33257b4e7d6b98767a67414efc31b6c7 (patch)
tree1942d5037d1cf5077c62f2dce89cf60cd9f96399 /tests/cancel4.c
parente470da85f7b9426eea03d66086c2822bf29e9b05 (diff)
Casting fixups
Diffstat (limited to 'tests/cancel4.c')
-rw-r--r--tests/cancel4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cancel4.c b/tests/cancel4.c
index 6d6d3dc..ea792af 100644
--- a/tests/cancel4.c
+++ b/tests/cancel4.c
@@ -118,7 +118,7 @@ mythread(void * arg)
for (bag->count = 0; bag->count < 20; bag->count++)
Sleep(100);
- return (void *) result;
+ return (void *) (size_t)result;
}
int
@@ -180,7 +180,7 @@ main()
* a return value of PTHREAD_CANCELED indicates that async
* cancelation occurred.
*/
- assert(pthread_join(t[i], (void **) &result) == 0);
+ assert(pthread_join(t[i], (void *) &result) == 0);
fail = (result == (int) PTHREAD_CANCELED);