From f0bc38351c98264c89c7ec01ab04519dd60e015a Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 6 Feb 2007 13:40:57 +0000 Subject: =?UTF-8?q?2007-02-06=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * score/inline/rtems/score/coremsg.inl: More size_t and consts. --- cpukit/score/inline/rtems/score/coremsg.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/inline/rtems/score') diff --git a/cpukit/score/inline/rtems/score/coremsg.inl b/cpukit/score/inline/rtems/score/coremsg.inl index bb1be80ad7..3ff0ccc62a 100644 --- a/cpukit/score/inline/rtems/score/coremsg.inl +++ b/cpukit/score/inline/rtems/score/coremsg.inl @@ -92,9 +92,9 @@ RTEMS_INLINE_ROUTINE CORE_message_queue_Status _CORE_message_queue_Urgent( */ RTEMS_INLINE_ROUTINE void _CORE_message_queue_Copy_buffer ( - void *source, - void *destination, - uint32_t size + const void *source, + void *destination, + size_t size ) { memcpy(destination, source, size); -- cgit v1.2.3