summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mqueuenametoid.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/mqueuenametoid.c')
-rw-r--r--cpukit/posix/src/mqueuenametoid.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/posix/src/mqueuenametoid.c b/cpukit/posix/src/mqueuenametoid.c
index b11c53bc51..91dd9357fd 100644
--- a/cpukit/posix/src/mqueuenametoid.c
+++ b/cpukit/posix/src/mqueuenametoid.c
@@ -2,8 +2,8 @@
* NOTE: The structure of the routines is identical to that of POSIX
* Message_queues to leave the option of having unnamed message
* queues at a future date. They are currently not part of the
- * POSIX standard but unnamed message_queues are. This is also
- * the reason for the apparently unnecessary tracking of
+ * POSIX standard but unnamed message_queues are. This is also
+ * the reason for the apparently unnecessary tracking of
* the process_shared attribute. [In addition to the fact that
* it would be trivial to add pshared to the mq_attr structure
* and have process private message queues.]
@@ -56,7 +56,7 @@ int _POSIX_Message_queue_Name_to_id(
if( strlen(name) > PATH_MAX )
return ENAMETOOLONG;
- status = _Objects_Name_to_id(
+ status = _Objects_Name_to_id(
&_POSIX_Message_queue_Information, (char *)name, 0, id );
if ( status == OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL )