summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectgetnoprotection.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/objectgetnoprotection.c')
-rw-r--r--cpukit/score/src/objectgetnoprotection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/objectgetnoprotection.c b/cpukit/score/src/objectgetnoprotection.c
index 2c9a2b517b..8dfd5b9617 100644
--- a/cpukit/score/src/objectgetnoprotection.c
+++ b/cpukit/score/src/objectgetnoprotection.c
@@ -51,7 +51,7 @@ Objects_Control *_Objects_Get_no_protection(
)
{
Objects_Control *the_object;
- unsigned32 index;
+ uint32_t index;
#if defined(RTEMS_MULTIPROCESSING)
index = id - information->minimum_id + 1;
@@ -59,7 +59,7 @@ Objects_Control *_Objects_Get_no_protection(
/* index = _Objects_Get_index( id ); */
index = id & 0x0000ffff;
/* This should work but doesn't always :( */
- /* index = (unsigned16) id; */
+ /* index = (uint16_t ) id; */
#endif
if ( information->maximum >= index ) {