summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/inline/rtems/rtems/region.inl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/inline/rtems/rtems/region.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/inline/rtems/rtems/region.inl b/cpukit/rtems/inline/rtems/rtems/region.inl
index be651dc10a..e70891378d 100644
--- a/cpukit/rtems/inline/rtems/rtems/region.inl
+++ b/cpukit/rtems/inline/rtems/rtems/region.inl
@@ -78,10 +78,10 @@ RTEMS_INLINE_ROUTINE Region_Control *_Region_Get (
*/
RTEMS_INLINE_ROUTINE void *_Region_Allocate_segment (
Region_Control *the_region,
- intptr_t size
+ uintptr_t size
)
{
- return _Heap_Allocate( &the_region->Memory, size );
+ return _Heap_Allocate( &the_region->Memory, size );
}
/**