From f3eaba9a0c6ec185afd565d8a155ee88f1413c06 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 19 Aug 2008 12:41:03 +0000 Subject: 2008-08-19 Sebastian Huber * include/bootcard.h, bootcard.c, bsplibc.c: Changed parameter types of bsp_libc_init() to match RTEMS_Malloc_Initialize(). * bsppost.c, bsppredriverhook.c: Include bootcard.h. * src/irq-generic.c: Fixed warnings. --- c/src/lib/libbsp/shared/bootcard.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c/src/lib/libbsp/shared/bootcard.c') diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c index d7539c75ed..2853097d2f 100644 --- a/c/src/lib/libbsp/shared/bootcard.c +++ b/c/src/lib/libbsp/shared/bootcard.c @@ -81,8 +81,8 @@ char *rtems_progname; * For the default heap size use the free space from the start of the * work area up to the work space start as heap area. */ - heap_size_default = (char *) Configuration.work_space_start - - (char *) work_area_start; + heap_size_default = (size_t) ((char *) Configuration.work_space_start + - (char *) work_area_start); /* Keep it as a multiple of 16 bytes */ heap_size_default &= ~((size_t) 0xf); @@ -98,7 +98,7 @@ char *rtems_progname; } } - bsp_libc_init( heap_start, (uint32_t) heap_size, 0); + bsp_libc_init( heap_start, heap_size, 0); return RTEMS_SUCCESSFUL; } -- cgit v1.2.3