summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapextend.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-02-11 04:52:37 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-02-11 04:52:37 +0000
commit8022a681a34f0bb518dc6bafbfcaf543bb1026eb (patch)
treea0bb15453a97c1156490bcb10e5287b0f740a6a6 /cpukit/score/src/heapextend.c
parent2007-02-11 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-8022a681a34f0bb518dc6bafbfcaf543bb1026eb.tar.bz2
Use size_t for heap-sizes.
Diffstat (limited to 'cpukit/score/src/heapextend.c')
-rw-r--r--cpukit/score/src/heapextend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/heapextend.c b/cpukit/score/src/heapextend.c
index 0bcf194532..73eb91f127 100644
--- a/cpukit/score/src/heapextend.c
+++ b/cpukit/score/src/heapextend.c
@@ -38,7 +38,7 @@
Heap_Extend_status _Heap_Extend(
Heap_Control *the_heap,
void *starting_address,
- uint32_t size,
+ size_t size,
uint32_t *amount_extended
)
{