diff options
Diffstat (limited to 'tests/tsd2.c')
-rw-r--r-- | tests/tsd2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tsd2.c b/tests/tsd2.c index d1f50cd..8aef83b 100644 --- a/tests/tsd2.c +++ b/tests/tsd2.c @@ -185,7 +185,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); |