summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx10/task2.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx10/task2.c')
-rw-r--r--testsuites/psxtests/psx10/task2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/psxtests/psx10/task2.c b/testsuites/psxtests/psx10/task2.c
index dcf1847945..2427c51d0f 100644
--- a/testsuites/psxtests/psx10/task2.c
+++ b/testsuites/psxtests/psx10/task2.c
@@ -29,15 +29,15 @@ void *Task_2(
printf( "Task_2: ID is 0x%08" PRIxpthread_t "\n", Task_id );
status = pthread_mutex_lock( &Mutex_id );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
puts( "Task_2: pthread_cond_wait" );
status = pthread_cond_wait( &Cond1_id, &Mutex_id );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
puts( "Task_2: back from pthread_cond_wait release mutex" );
status = pthread_mutex_unlock( &Mutex_id );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
puts( "Task_2: task exit" );
pthread_exit( NULL );