From 6965fc4342e0c7fb4f96dd12b7d589cc7b4fce1b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 30 Mar 2004 11:16:17 +0000 Subject: 2004-03-30 Ralf Corsepius * psx06/init.c, psx06/system.h, psx06/task.c, psx06/task2.c: Convert to using c99 fixed size types. --- testsuites/psxtests/psx06/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuites/psxtests/psx06/init.c') diff --git a/testsuites/psxtests/psx06/init.c b/testsuites/psxtests/psx06/init.c index 42f3dc32df..290d54fbb0 100644 --- a/testsuites/psxtests/psx06/init.c +++ b/testsuites/psxtests/psx06/init.c @@ -34,7 +34,7 @@ void *POSIX_Init( { int status; unsigned int remaining; - rtems_unsigned32 *key_data; + uint32_t *key_data; puts( "\n\n*** POSIX TEST 6 ***" ); @@ -94,7 +94,7 @@ void *POSIX_Init( key_data = pthread_getspecific( Key_id ); printf( "Init: Got the key value of %ld\n", - (unsigned long) ((rtems_unsigned32 *)key_data - Data_array) ); + (unsigned long) ((uint32_t *)key_data - Data_array) ); remaining = sleep( 3 ); if ( remaining ) -- cgit v1.2.3