summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/apimutex.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-22 05:52:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-22 05:52:32 +0000
commitaae7f1a12b1d5bfe7233ce45532dba3ce651357b (patch)
tree072e6a5712a00830e7d89115cb2ee9b1f9f1895e /cpukit/score/src/apimutex.c
parent2008-12-22 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-aae7f1a12b1d5bfe7233ce45532dba3ce651357b.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to 'cpukit/score/src/apimutex.c')
-rw-r--r--cpukit/score/src/apimutex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/apimutex.c b/cpukit/score/src/apimutex.c
index 48c25fbef2..93e67eafaf 100644
--- a/cpukit/score/src/apimutex.c
+++ b/cpukit/score/src/apimutex.c
@@ -26,11 +26,11 @@ void _API_Mutex_Initialization(
OBJECTS_INTERNAL_MUTEXES, /* object class */
maximum_mutexes, /* maximum objects of this class */
sizeof( API_Mutex_Control ), /* size of this object's control block */
- FALSE, /* TRUE if the name is a string */
+ false, /* true if the name is a string */
0 /* 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
);