From 6a9282d9bb7dd6d7665adb858161edf4e1d0778a Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 9 Dec 2016 10:49:49 +0100 Subject: Rename is_internal to always_set_to_false Update #2825. --- testsuites/libtests/stackchk/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuites/libtests/stackchk/init.c') 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" ); -- cgit v1.2.3