summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapsizeofuserarea.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/heapsizeofuserarea.c')
-rw-r--r--cpukit/score/src/heapsizeofuserarea.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/heapsizeofuserarea.c b/cpukit/score/src/heapsizeofuserarea.c
index 60ee7d033b..da101d730c 100644
--- a/cpukit/score/src/heapsizeofuserarea.c
+++ b/cpukit/score/src/heapsizeofuserarea.c
@@ -37,12 +37,12 @@
boolean _Heap_Size_of_user_area(
Heap_Control *the_heap,
void *starting_address,
- unsigned32 *size
+ uint32_t *size
)
{
Heap_Block *the_block;
Heap_Block *next_block;
- unsigned32 the_size;
+ uint32_t the_size;
the_block = _Heap_User_block_at( starting_address );