summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectfree.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/objectfree.c')
-rw-r--r--cpukit/score/src/objectfree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/objectfree.c b/cpukit/score/src/objectfree.c
index 3f3fd63d66..4a5fe2be10 100644
--- a/cpukit/score/src/objectfree.c
+++ b/cpukit/score/src/objectfree.c
@@ -39,12 +39,12 @@ void _Objects_Free(
Objects_Control *the_object
)
{
- unsigned32 allocation_size = information->allocation_size;
+ uint32_t allocation_size = information->allocation_size;
_Chain_Append( &information->Inactive, &the_object->Node );
if ( information->auto_extend ) {
- unsigned32 block;
+ uint32_t block;
block =
_Objects_Get_index( the_object->id ) - _Objects_Get_index( information->minimum_id );