diff options
Diffstat (limited to 'nptl/tst-audit-threads.c')
-rw-r--r-- | nptl/tst-audit-threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/tst-audit-threads.c b/nptl/tst-audit-threads.c index ad10fbf..5846248 100644 --- a/nptl/tst-audit-threads.c +++ b/nptl/tst-audit-threads.c @@ -77,7 +77,7 @@ do_test (void) /* Used to synchronize all the threads after calling each retNumN. */ xpthread_barrier_init (&barrier, NULL, num_threads); - threads = (pthread_t *) xcalloc (num_threads, sizeof(pthread_t)); + threads = (pthread_t *) xcalloc (num_threads, sizeof (pthread_t)); for (i = 0; i < num_threads; i++) threads[i] = xpthread_create(NULL, thread_main, NULL); |