summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx06/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx06/init.c')
-rw-r--r--testsuites/psxtests/psx06/init.c4
1 files changed, 2 insertions, 2 deletions
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 )