summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx05/task2.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx05/task2.c')
-rw-r--r--testsuites/psxtests/psx05/task2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx05/task2.c b/testsuites/psxtests/psx05/task2.c
index 0e73fe23ec..7e8597de68 100644
--- a/testsuites/psxtests/psx05/task2.c
+++ b/testsuites/psxtests/psx05/task2.c
@@ -30,14 +30,14 @@ void *Task_2(
status = pthread_mutex_lock( &Mutex2_id );
if ( status )
printf( "status =%d\n", status );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
printf( "Task 2: mutex acquired\n" );
/* switch to init */
printf( "Task 2: unlock Mutex 2\n" );
status = pthread_mutex_unlock( &Mutex2_id );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
printf( "Task 2: exit\n" );
pthread_exit( NULL );