summaryrefslogtreecommitdiff
path: root/tests/threads/test_counter_mutex.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/threads/test_counter_mutex.c')
-rw-r--r--tests/threads/test_counter_mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/threads/test_counter_mutex.c b/tests/threads/test_counter_mutex.c
index af28f6f..b827d15 100644
--- a/tests/threads/test_counter_mutex.c
+++ b/tests/threads/test_counter_mutex.c
@@ -72,7 +72,7 @@ int main( void ) {
for( j = 0; j < NOF_LOOPS; j++ ) {
for( i = 0; i < NOF_THREADS; i++ ) {
- error = wolf_thread_create( &thread[i], thread_func );
+ error = wolf_thread_create( &thread[i], thread_func, NULL );
if( error != WOLF_OK ) {
fprintf( stderr, "Unable to start thread %d: %d\n", i, error );
return EXIT_FAILURE;