boot/zephyr: switch main return type to 'int'
Adapt to Zephyr's change requiring main to return int. Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
7f982b0f6f
commit
ec2ac82c32
|
@ -530,7 +530,7 @@ static void boot_serial_enter()
|
|||
}
|
||||
#endif
|
||||
|
||||
void main(void)
|
||||
int main(void)
|
||||
{
|
||||
struct boot_rsp rsp;
|
||||
int rc;
|
||||
|
|
Loading…
Reference in New Issue