2005-04-26 Joel Sherrill <joel@OARcorp.com>

* startup/bspstart.c: Eliminate warnings.
This commit is contained in:
Joel Sherrill
2005-04-26 23:16:21 +00:00
parent fa2c7a4158
commit 106e048260
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2005-04-26 Joel Sherrill <joel@OARcorp.com>
* startup/bspstart.c: Eliminate warnings.
2005-04-25 Jennifer Averett <jennifer.averett@oarcorp.com>
PR 779/bsp

View File

@@ -105,10 +105,10 @@ void bsp_pretasking_hook(void)
* the kernel and the application can be linked and burned into ROM
* independently of each other.
*/
unsigned char *_HeapStart =
(char*)BSP_Configuration.work_space_start
uint8_t *_HeapStart =
(uint8_t *)BSP_Configuration.work_space_start
+ BSP_Configuration.work_space_size;
extern unsigned char _HeapEnd[];
extern uint8_t _HeapEnd[];
bsp_libc_init( _HeapStart, _HeapEnd - _HeapStart, 0 );