diff options
Diffstat (limited to 'tests/join0.c')
-rw-r--r-- | tests/join0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/join0.c b/tests/join0.c index c8367d3..3519f53 100644 --- a/tests/join0.c +++ b/tests/join0.c @@ -53,14 +53,14 @@ int main(int argc, char * argv[]) { pthread_t id; - int result; + void* result = (void*)0; /* Create a single thread and wait for it to exit. */ assert(pthread_create(&id, NULL, func, (void *) 123) == 0); assert(pthread_join(id, (void *) &result) == 0); - assert(result == 123); + assert((int)(size_t)result == 123); /* Success. */ return 0; |