summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/rtemstimer.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-01-06 05:05:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-01-06 05:05:03 +0000
commiteaef4657ac140fd13b67a3ab88703f5d3b5cf74e (patch)
treeb2eb2a7d6fa1346bfec8563229824a0c13f5b61f /cpukit/rtems/src/rtemstimer.c
parent2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-eaef4657ac140fd13b67a3ab88703f5d3b5cf74e.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to 'cpukit/rtems/src/rtemstimer.c')
-rw-r--r--cpukit/rtems/src/rtemstimer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/src/rtemstimer.c b/cpukit/rtems/src/rtemstimer.c
index 179e99c7aa..5aeb2fdab2 100644
--- a/cpukit/rtems/src/rtemstimer.c
+++ b/cpukit/rtems/src/rtemstimer.c
@@ -46,11 +46,11 @@ void _Timer_Manager_initialization(void)
Configuration_RTEMS_API.maximum_timers ,
/* maximum objects of this class */
sizeof( Timer_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)
,
- FALSE, /* TRUE if this is a global object class */
+ false, /* true if this is a global object class */
NULL /* Proxy extraction support callout */
#endif
);