1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

pc98 boot2 is compiled with _KERNEL defined, and that makes non-static

bootinfo variable declaration visible. It conflicts with static
declaration in this file. Declare variable as globally visible in
order to resolve the conflict.
This commit is contained in:
Alexander Kabaev 2007-04-06 20:50:24 +00:00
parent 84830e00cf
commit 7d80a3b493
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168442

View File

@ -70,7 +70,7 @@ static char kernel_config[KERNEL_CONFIG_SIZE];
static char kernel_config_namebuf[NAMEBUF_LEN + sizeof "config"];
static char linebuf[NAMEBUF_LEN];
static char namebuf[NAMEBUF_LEN];
static struct bootinfo bootinfo;
struct bootinfo bootinfo;
int loadflags;
static void getbootdev(char *ptr, int *howto);