diff options
Diffstat (limited to 'tests/tsd1.c')
-rw-r--r-- | tests/tsd1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tsd1.c b/tests/tsd1.c index c28e4c5..de5055a 100644 --- a/tests/tsd1.c +++ b/tests/tsd1.c @@ -181,7 +181,7 @@ main() { int result = 0; - assert(pthread_join(thread[i], (void **) &result) == 0); + assert(pthread_join(thread[i], (void *) &result) == 0); } assert(pthread_key_delete(key) == 0); |