From 5343588483977b1c75732fe3757aa8208e782a57 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 6 Feb 2007 19:14:37 +0000 Subject: 2007-02-06 Joel Sherrill * tm09/task1.c, tm10/task1.c, tm11/task1.c, tm12/task1.c, tm13/task1.c, tm14/task1.c, tm22/task1.c: Address size_t/uint32_t typing issues in message queue tests. --- testsuites/tmtests/tm13/task1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuites/tmtests/tm13') diff --git a/testsuites/tmtests/tm13/task1.c b/testsuites/tmtests/tm13/task1.c index d6e6fad8f6..7661bf3154 100644 --- a/testsuites/tmtests/tm13/task1.c +++ b/testsuites/tmtests/tm13/task1.c @@ -1,6 +1,6 @@ /* * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2007. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -113,7 +113,7 @@ rtems_task Middle_tasks( rtems_task_argument argument ) { - uint32_t size; + size_t size; (void) rtems_message_queue_receive( Queue_id, @@ -130,7 +130,7 @@ rtems_task High_task( rtems_task_argument argument ) { - uint32_t size; + size_t size; (void) rtems_message_queue_receive( Queue_id, -- cgit v1.2.3