From f0157b8fd85d5ce211b0aae48b53d9d88b59cd68 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 6 Sep 2008 03:39:58 +0000 Subject: Convert to "bool". --- testsuites/samples/unlimited/test1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuites/samples/unlimited/test1.c') diff --git a/testsuites/samples/unlimited/test1.c b/testsuites/samples/unlimited/test1.c index c676faf7bb..f11834e49c 100644 --- a/testsuites/samples/unlimited/test1.c +++ b/testsuites/samples/unlimited/test1.c @@ -24,9 +24,9 @@ void test1() { - boolean auto_extend; + bool auto_extend; rtems_status_code result; - uint32_t task_count = 0; + uint32_t task_count = 0; Objects_Information *the_information; char c1 = 'a'; @@ -44,7 +44,7 @@ void test1() the_information = _Objects_Information_table[OBJECTS_CLASSIC_API][OBJECTS_RTEMS_TASKS]; auto_extend = the_information->auto_extend; - the_information->auto_extend = FALSE; + the_information->auto_extend = false; while (task_count < MAX_TASKS) { -- cgit v1.2.3