diff options
author | Warner Losh <imp@FreeBSD.org> | 2018-03-13 16:33:00 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2018-03-13 16:33:00 +0000 |
commit | 56e53cb8ef000c3ef72337a4095987a932cdedef (patch) | |
tree | bd53d80c2702e6ceca59a093eb5d39ec37c00c59 /stand/i386/loader | |
parent | 011bbaa5138e04e38ff28537ae734216bdbfe270 (diff) | |
download | src-test2-56e53cb8ef000c3ef72337a4095987a932cdedef.tar.gz src-test2-56e53cb8ef000c3ef72337a4095987a932cdedef.zip |
Notes
Diffstat (limited to 'stand/i386/loader')
-rw-r--r-- | stand/i386/loader/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/i386/loader/main.c b/stand/i386/loader/main.c index 0c2978f46bb8..2fc17288b3bf 100644 --- a/stand/i386/loader/main.c +++ b/stand/i386/loader/main.c @@ -60,8 +60,8 @@ CTASSERT(offsetof(struct bootinfo, bi_size) == BI_SIZE); /* Arguments passed in from the boot1/boot2 loader */ static struct bootargs *kargs; -static u_int32_t initial_howto; -static u_int32_t initial_bootdev; +static uint32_t initial_howto; +static uint32_t initial_bootdev; static struct bootinfo *initial_bootinfo; struct arch_switch archsw; /* MI/MD interface boundary */ |