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/libtests/malloctest/init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuites/libtests') diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c index e6400f4dec..b1028640b4 100644 --- a/testsuites/libtests/malloctest/init.c +++ b/testsuites/libtests/malloctest/init.c @@ -155,7 +155,7 @@ void test_heap_extend() { void *p1, *p2, *p3, *p4; uint32_t u1, u2; - boolean ret; + bool ret; /* * Easier to hit extend with a dedicated heap. @@ -165,11 +165,11 @@ void test_heap_extend() puts( "heap extend - bad address" ); ret = _Protected_heap_Extend( &TestHeap, TestHeapMemory - 512, 512 ); - rtems_test_assert( ret == FALSE ); + rtems_test_assert( ret == false ); puts( "heap extend - OK" ); ret = _Protected_heap_Extend( &TestHeap, &TestHeapMemory[ 512 ], 512 ); - rtems_test_assert( ret == TRUE ); + rtems_test_assert( ret == true ); } void test_heap_info(void) -- cgit v1.2.3