summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/regionextend.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/src/regionextend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/src/regionextend.c b/cpukit/rtems/src/regionextend.c
index d8ad00b55c..7f29109e61 100644
--- a/cpukit/rtems/src/regionextend.c
+++ b/cpukit/rtems/src/regionextend.c
@@ -46,10 +46,10 @@
rtems_status_code rtems_region_extend(
Objects_Id id,
void *starting_address,
- uint32_t length
+ intptr_t length
)
{
- uint32_t amount_extended;
+ intptr_t amount_extended;
Heap_Extend_status heap_status;
Objects_Locations location;
rtems_status_code return_status = RTEMS_INTERNAL_ERROR;