summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bootcard.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/shared/bootcard.c')
-rw-r--r--c/src/lib/libbsp/shared/bootcard.c6
1 files changed, 3 insertions, 3 deletions
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;
}