summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/stackchk/init.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-12-09 10:49:49 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-12-12 08:03:14 +0100
commit6a9282d9bb7dd6d7665adb858161edf4e1d0778a (patch)
treeece20b650906f16036ac2de3f90732c1f914401a /testsuites/libtests/stackchk/init.c
parentscore: Remove fatal is internal indicator (diff)
downloadrtems-6a9282d9bb7dd6d7665adb858161edf4e1d0778a.tar.bz2
Rename is_internal to always_set_to_false
Update #2825.
Diffstat (limited to 'testsuites/libtests/stackchk/init.c')
-rw-r--r--testsuites/libtests/stackchk/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/libtests/stackchk/init.c b/testsuites/libtests/stackchk/init.c
index 4e1e41cdfb..72e3c23731 100644
--- a/testsuites/libtests/stackchk/init.c
+++ b/testsuites/libtests/stackchk/init.c
@@ -90,13 +90,13 @@ rtems_task Init(
void Fatal_extension(
rtems_fatal_source source,
- bool is_internal,
+ bool always_set_to_false,
rtems_fatal_code error
)
{
if ( source != RTEMS_FATAL_SOURCE_STACK_CHECKER ) {
printk( "unexpected fatal source\n" );
- } else if ( is_internal ) {
+ } else if ( always_set_to_false ) {
printk( "unexpected fatal is internal\n" );
} else if ( error != rtems_build_name( 'T', 'A', '1', ' ' ) ) {
printk( "unexpected fatal error\n" );