From eaef4657ac140fd13b67a3ab88703f5d3b5cf74e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 6 Jan 2009 05:05:03 +0000 Subject: Eliminate TRUE/FALSE. --- cpukit/rtems/src/tasks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/rtems/src/tasks.c') diff --git a/cpukit/rtems/src/tasks.c b/cpukit/rtems/src/tasks.c index 4091720eb0..78b5c0fad8 100644 --- a/cpukit/rtems/src/tasks.c +++ b/cpukit/rtems/src/tasks.c @@ -255,11 +255,11 @@ void _RTEMS_tasks_Manager_initialization(void) Configuration_RTEMS_API.maximum_tasks, /* maximum objects of this class */ sizeof( Thread_Control ), /* size of this object's control block */ - FALSE, /* TRUE if the name is a string */ + false, /* true if the name is a string */ RTEMS_MAXIMUM_NAME_LENGTH /* maximum length of an object name */ #if defined(RTEMS_MULTIPROCESSING) , - TRUE, /* TRUE if this is a global object class */ + true, /* true if this is a global object class */ NULL /* Proxy extraction support callout */ #endif ); -- cgit v1.2.3