summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-01 07:34:56 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-01 07:34:56 +0100
commit75518fb78240dbab92fc9d959765639afb32a457 (patch)
tree814eac20adf3b40e6dbc4dd61e338f3f87fce970
parentam335x irq handling improvement (diff)
downloadrtems-75518fb78240dbab92fc9d959765639afb32a457.tar.bz2
malloc: Fix function definition
Close #2617.
-rw-r--r--cpukit/libcsupport/src/malloc_deferred.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/malloc_deferred.c b/cpukit/libcsupport/src/malloc_deferred.c
index e781a05bd5..2a4f5c892b 100644
--- a/cpukit/libcsupport/src/malloc_deferred.c
+++ b/cpukit/libcsupport/src/malloc_deferred.c
@@ -76,7 +76,7 @@ static void _Malloc_Process_deferred_frees( void )
}
void *rtems_heap_allocate_aligned_with_boundary(
- uintptr_t size,
+ size_t size,
uintptr_t alignment,
uintptr_t boundary
)