summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/posix/src/mqueuesendsupp.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index d1825e5f4d..c441d77886 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-25 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * posix/src/mqueuesendsupp.c: Remove warning.
+
2008-01-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/include/rtems/assoc.h: rtems_assoc_ptr_by_local should be
diff --git a/cpukit/posix/src/mqueuesendsupp.c b/cpukit/posix/src/mqueuesendsupp.c
index 3f41fa4a09..5b437b04e5 100644
--- a/cpukit/posix/src/mqueuesendsupp.c
+++ b/cpukit/posix/src/mqueuesendsupp.c
@@ -79,7 +79,7 @@ int _POSIX_Message_queue_Send_support(
msg_status = _CORE_message_queue_Submit(
&the_mq->Message_queue,
- msg_ptr,
+ (void *)msg_ptr,
msg_len,
mqdes, /* mqd_t is an object id */
NULL,