bootloader: fix compiler warning

This commit is contained in:
King Kévin 2022-05-10 10:48:05 +02:00
parent 9c9893e1da
commit de5ef8ed55
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
/** symbol for beginning of the application
* @note this symbol will be provided by the bootloader linker script
*/
extern char __application_beginning;
extern uint32_t __application_beginning;
/** bootloader entry point */
void main(void);