summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testsuites/sptests/sp54/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp54/init.c b/testsuites/sptests/sp54/init.c
index 9ec98e19e0..172eb2b1b0 100644
--- a/testsuites/sptests/sp54/init.c
+++ b/testsuites/sptests/sp54/init.c
@@ -88,7 +88,7 @@ static void check_dirty_memory( void )
rtems_test_assert( p != NULL );
rtems_test_assert( *p == 0xcf );
- p = (unsigned char *) _Thread_Information.Objects.local_table;
+ p = (unsigned char *) _Thread_Information.Objects.initial_objects;
rtems_test_assert( *p == 0xcf );
}
@@ -106,7 +106,7 @@ static void check_zero_workspace_automatically( void )
rtems_test_assert( p != NULL );
rtems_test_assert( *p == 0 );
- p = (unsigned char *) _Thread_Information.Objects.local_table;
+ p = (unsigned char *) _Thread_Information.Objects.initial_objects;
rtems_test_assert( *p == 0 );
}