summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx06/task2.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:16:17 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:16:17 +0000
commit6965fc4342e0c7fb4f96dd12b7d589cc7b4fce1b (patch)
treed480417aa28b733d0959298487989f92f9735e37 /testsuites/psxtests/psx06/task2.c
parent2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-6965fc4342e0c7fb4f96dd12b7d589cc7b4fce1b.tar.bz2
2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>
* psx06/init.c, psx06/system.h, psx06/task.c, psx06/task2.c: Convert to using c99 fixed size types.
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psx06/task2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx06/task2.c b/testsuites/psxtests/psx06/task2.c
index 9556a3404d..497b592f2c 100644
--- a/testsuites/psxtests/psx06/task2.c
+++ b/testsuites/psxtests/psx06/task2.c
@@ -25,7 +25,7 @@ void *Task_2(
)
{
int status;
- rtems_unsigned32 *key_data;
+ uint32_t *key_data;
printf( "Destructor invoked %d times\n", Destructor_invoked );
@@ -37,7 +37,7 @@ void *Task_2(
key_data = pthread_getspecific( Key_id );
printf( "Task_2: Got the key value of %ld\n",
- (unsigned long) ((rtems_unsigned32 *)key_data - Data_array) );
+ (unsigned long) ((uint32_t *)key_data - Data_array) );
if ( status )
printf( "status = %d\n", status );
assert( !status );