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:
Keith Packard 2023-04-27 09:56:10 -07:00 committed by Jamie
parent 7f982b0f6f
commit ec2ac82c32
1 changed files with 1 additions and 1 deletions

View File

@ -530,7 +530,7 @@ static void boot_serial_enter()
}
#endif
void main(void)
int main(void)
{
struct boot_rsp rsp;
int rc;