summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapallocate.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/heapallocate.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/heapallocate.c')
-rw-r--r--cpukit/score/src/heapallocate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/heapallocate.c b/cpukit/score/src/heapallocate.c
index e2a7ecdc25..418ee758fc 100644
--- a/cpukit/score/src/heapallocate.c
+++ b/cpukit/score/src/heapallocate.c
@@ -36,7 +36,7 @@
void *_Heap_Allocate(
Heap_Control *the_heap,
- uint32_t size
+ size_t size
)
{
uint32_t the_size;