diff options
Diffstat (limited to 'tests/cleanup1.c')
-rw-r--r-- | tests/cleanup1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cleanup1.c b/tests/cleanup1.c index 385aed9..b35013b 100644 --- a/tests/cleanup1.c +++ b/tests/cleanup1.c @@ -146,7 +146,7 @@ mythread(void * arg) #pragma inline_depth() #endif - return (void *) result; + return (void *) (size_t)result; } int @@ -205,7 +205,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 != (int) PTHREAD_CANCELED); |