diff options
Diffstat (limited to 'tests/delay2.c')
-rw-r--r-- | tests/delay2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/delay2.c b/tests/delay2.c index cdc70a6..2551336 100644 --- a/tests/delay2.c +++ b/tests/delay2.c @@ -58,7 +58,7 @@ func(void * arg) #pragma inline_depth() #endif - return (void *) 1; + return (void *)(size_t)1; } int @@ -75,7 +75,7 @@ main(int argc, char * argv[]) assert(pthread_mutex_unlock(&mx) == 0); assert(pthread_join(t, (void *) &result) == 0); - assert((int)(size_t)result == (int) PTHREAD_CANCELED); + assert(result == (void*)PTHREAD_CANCELED); return 0; } |