summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx08/task2.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx08/task2.c')
-rw-r--r--testsuites/psxtests/psx08/task2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx08/task2.c b/testsuites/psxtests/psx08/task2.c
index 612176404f..4ea3010844 100644
--- a/testsuites/psxtests/psx08/task2.c
+++ b/testsuites/psxtests/psx08/task2.c
@@ -37,13 +37,13 @@ void *Task_2(
status = pthread_join( Init_id, NULL );
if ( status != EINVAL )
printf( "status = %d\n", status );
- rtems_test_assert( status == EINVAL );
+ rtems_test_assert( status == EINVAL );
puts( "Task_2: join to self task (Init) -- EDEADLK" );
status = pthread_join( pthread_self(), NULL );
if ( status != EDEADLK )
printf( "status = %d\n", status );
- rtems_test_assert( status == EDEADLK );
+ rtems_test_assert( status == EDEADLK );
puts( "Task_2: exitting" );