summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/vmempool.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-03 05:23:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-03 05:23:05 +0000
commit9d2df2b3e1c8cc83769dd795698662f4c610f600 (patch)
treeb2097601a4d9fb3376ebe4dc16c16a030f62a317 /cpukit/itron/src/vmempool.c
parent2009-01-03 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9d2df2b3e1c8cc83769dd795698662f4c610f600.tar.bz2
Eliminate TRUE/FALSE in favor of true/false.
Diffstat (limited to '')
-rw-r--r--cpukit/itron/src/vmempool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/itron/src/vmempool.c b/cpukit/itron/src/vmempool.c
index 78b17a9c27..ea2548f430 100644
--- a/cpukit/itron/src/vmempool.c
+++ b/cpukit/itron/src/vmempool.c
@@ -39,11 +39,11 @@ void _ITRON_Variable_memory_pool_Manager_initialization(void)
/* maximum objects of this class */
sizeof( ITRON_Variable_memory_pool_Control ),
/* size of this object's control block */
- FALSE, /* TRUE if names for this object are strings */
+ false, /* true if names for this object are strings */
ITRON_MAXIMUM_NAME_LENGTH /* maximum length of each object's name */
#if defined(RTEMS_MULTIPROCESSING)
,
- FALSE, /* TRUE if this is a global object class */
+ false, /* true if this is a global object class */
NULL /* Proxy extraction support callout */
#endif
);