diff options
author | rpj <rpj> | 2011-03-04 08:03:46 +0000 |
---|---|---|
committer | rpj <rpj> | 2011-03-04 08:03:46 +0000 |
commit | e1de8e3c33257b4e7d6b98767a67414efc31b6c7 (patch) | |
tree | 1942d5037d1cf5077c62f2dce89cf60cd9f96399 /tests/cleanup2.c | |
parent | e470da85f7b9426eea03d66086c2822bf29e9b05 (diff) |
Casting fixups
Diffstat (limited to 'tests/cleanup2.c')
-rw-r--r-- | tests/cleanup2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cleanup2.c b/tests/cleanup2.c index 4c63918..e530f74 100644 --- a/tests/cleanup2.c +++ b/tests/cleanup2.c @@ -131,7 +131,7 @@ mythread(void * arg) #pragma inline_depth() #endif - return (void *) result; + return (void *) (size_t)result; } int @@ -180,7 +180,7 @@ main() int fail = 0; int result = 0; - assert(pthread_join(t[i], (void **) &result) == 0); + assert(pthread_join(t[i], (void *) &result) == 0); fail = (result != 0); |