diff options
Diffstat (limited to 'tests/eyal1.c')
-rw-r--r-- | tests/eyal1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/eyal1.c b/tests/eyal1.c index 849e632..412fbf0 100644 --- a/tests/eyal1.c +++ b/tests/eyal1.c @@ -244,14 +244,14 @@ main (int argc, char *argv[]) assert(pthread_mutex_init (&tcs[i].mutex_end, NULL) == 0); assert(pthread_mutex_init (&tcs[i].mutex_ended, NULL) == 0); - tcs[i].work = 0; + tcs[i].work = 0; assert(pthread_mutex_lock (&tcs[i].mutex_start) == 0); assert((tcs[i].stat = pthread_create (&tcs[i].thread, NULL, - (void*)&print_server, - (void *)&tcs[i]) + (void *(*)(void *))&print_server, + (void *) &tcs[i]) ) == 0); /* |