summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx05/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx05/task.c')
-rw-r--r--testsuites/psxtests/psx05/task.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx05/task.c b/testsuites/psxtests/psx05/task.c
index 7ba54ae36e..a546f3ecdd 100644
--- a/testsuites/psxtests/psx05/task.c
+++ b/testsuites/psxtests/psx05/task.c
@@ -31,13 +31,13 @@ void *Task_1(
status = pthread_mutex_trylock( &Mutex_id );
if ( status != EBUSY )
printf( "status = %d\n", status );
- rtems_test_assert( status == EBUSY );
+ rtems_test_assert( status == EBUSY );
printf( "Task: pthread_mutex_lock unavailable\n" );
status = pthread_mutex_lock( &Mutex_id );
if ( status )
printf( "status = %d\n", status );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
/* switch to init */