summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/region.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/src/region.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/src/region.c b/cpukit/rtems/src/region.c
index 4811412cfb..1b06ee60b5 100644
--- a/cpukit/rtems/src/region.c
+++ b/cpukit/rtems/src/region.c
@@ -47,11 +47,11 @@ void _Region_Manager_initialization(void)
Configuration_RTEMS_API.maximum_regions,
/* maximum objects of this class */
sizeof( Region_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
);