From b1dbfd724bf418ad997d72c68d3683589b53d2d5 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 3 Feb 2009 10:10:57 +0000 Subject: Eliminate TRUE/FALSE. --- cpukit/posix/src/mqueue.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/posix/src/mqueue.c') diff --git a/cpukit/posix/src/mqueue.c b/cpukit/posix/src/mqueue.c index 33f236d50c..5ae45f9b47 100644 --- a/cpukit/posix/src/mqueue.c +++ b/cpukit/posix/src/mqueue.c @@ -61,11 +61,11 @@ void _POSIX_Message_queue_Manager_initialization(void) /* maximum objects of this class */ sizeof( POSIX_Message_queue_Control ), /* size of this object's control block */ - TRUE, /* TRUE if names for this object are strings */ + true, /* true if names for this object are strings */ _POSIX_PATH_MAX /* 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 ); @@ -76,11 +76,11 @@ void _POSIX_Message_queue_Manager_initialization(void) Configuration_POSIX_API.maximum_message_queues, sizeof( POSIX_Message_queue_Control_fd ), /* size of this object's control block */ - TRUE, /* TRUE if names for this object are strings */ + true, /* true if names for this object are strings */ NAME_MAX /* 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 ); -- cgit v1.2.3