From d8e681e7fbd86dc032d71c069122e92bc1f20d11 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 30 Mar 2004 11:18:29 +0000 Subject: 2004-03-30 Ralf Corsepius * mp02/task1.c, mp03/system.h, mp03/task1.c, mp04/task1.c, mp05/system.h, mp06/task1.c, mp07/task1.c, mp08/task1.c, mp09/recvmsg.c, mp09/sendmsg.c, mp09/task1.c, mp10/task1.c, mp11/init.c, mp12/init.c, mp13/task1.c, mp14/evtask1.c, mp14/evtmtask.c, mp14/init.c, mp14/msgtask1.c, mp14/pttask1.c, mp14/smtask1.c, mp14/system.h: Convert to using c99 fixed size types. --- testsuites/mptests/mp11/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuites/mptests/mp11') diff --git a/testsuites/mptests/mp11/init.c b/testsuites/mptests/mp11/init.c index 8b1285ce77..fe904b92ca 100644 --- a/testsuites/mptests/mp11/init.c +++ b/testsuites/mptests/mp11/init.c @@ -27,7 +27,7 @@ #define TEST_INIT #include "system.h" -rtems_unsigned8 my_partition[0x30000] CPU_STRUCTURE_ALIGNMENT; +uint8_t my_partition[0x30000] CPU_STRUCTURE_ALIGNMENT; rtems_task Init( rtems_task_argument argument @@ -90,7 +90,7 @@ rtems_task Init( puts( "Attempting to create Partition (Global)" ); status = rtems_partition_create( 1, - (rtems_unsigned8 *) my_partition, + (uint8_t *) my_partition, 128, 64, RTEMS_GLOBAL, -- cgit v1.2.3