diff options
Diffstat (limited to 'tests/cleanup1.c')
-rw-r--r-- | tests/cleanup1.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/cleanup1.c b/tests/cleanup1.c index 2be711c..2c8e9a6 100644 --- a/tests/cleanup1.c +++ b/tests/cleanup1.c @@ -60,8 +60,6 @@ struct bag_t_ { static bag_t threadbag[NUMTHREADS + 1]; -static pthread_mutex_t waitLock = PTHREAD_MUTEX_INITIALIZER; - static int pop_count = 0; static void @@ -155,7 +153,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); |