diff options
Diffstat (limited to 'tests/cancel2.c')
-rw-r--r-- | tests/cancel2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cancel2.c b/tests/cancel2.c index b09eab9..f64882a 100644 --- a/tests/cancel2.c +++ b/tests/cancel2.c @@ -187,7 +187,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); if (fail) { |