summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxstack02/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxstack02/init.c')
-rw-r--r--testsuites/psxtests/psxstack02/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/psxtests/psxstack02/init.c b/testsuites/psxtests/psxstack02/init.c
index a0f2173d74..c393e6a9e4 100644
--- a/testsuites/psxtests/psxstack02/init.c
+++ b/testsuites/psxtests/psxstack02/init.c
@@ -63,14 +63,14 @@ void *POSIX_Init(
puts( "Init - Initialize thread attribute for user provided stack" );
sc = pthread_attr_init( &attr );
- rtems_test_assert( !sc );
+ rtems_test_assert( !sc );
sc = pthread_attr_setstack( &attr, Stack_Low, PTHREAD_MINIMUM_STACK_SIZE );
- rtems_test_assert( !sc );
+ rtems_test_assert( !sc );
/* create threads */
sc = pthread_create( &id, &attr, Test_Thread, NULL );
- rtems_test_assert( !sc );
+ rtems_test_assert( !sc );
puts( "Init - let other thread run" );
delay_request.tv_sec = 0;