summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx06/task2.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx06/task2.c')
-rw-r--r--testsuites/psxtests/psx06/task2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx06/task2.c b/testsuites/psxtests/psx06/task2.c
index de981e5a26..a5a46781a8 100644
--- a/testsuites/psxtests/psx06/task2.c
+++ b/testsuites/psxtests/psx06/task2.c
@@ -33,14 +33,14 @@ void *Task_2(
status = pthread_setspecific( Key_id, &Data_array[ 2 ] );
if ( status )
printf( "status = %d\n", status );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
key_data = pthread_getspecific( Key_id );
printf( "Task_2: Got the key value of %ld\n",
(unsigned long) ((uint32_t *)key_data - Data_array) );
if ( status )
printf( "status = %d\n", status );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
puts( "Task2: exitting" );
pthread_exit( NULL );