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 85302575fe..9e5436de8d 100644
--- a/cpukit/rtems/src/regionextend.c
+++ b/cpukit/rtems/src/regionextend.c
@@ -42,12 +42,12 @@
rtems_status_code rtems_region_extend(
Objects_Id id,
void *starting_address,
- unsigned32 length
+ uint32_t length
)
{
Region_Control *the_region;
Objects_Locations location;
- unsigned32 amount_extended;
+ uint32_t amount_extended;
Heap_Extend_status heap_status;
rtems_status_code status;