aboutsummaryrefslogtreecommitdiff
path: root/stand/i386/loader
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2018-03-13 16:33:00 +0000
committerWarner Losh <imp@FreeBSD.org>2018-03-13 16:33:00 +0000
commit56e53cb8ef000c3ef72337a4095987a932cdedef (patch)
treebd53d80c2702e6ceca59a093eb5d39ec37c00c59 /stand/i386/loader
parent011bbaa5138e04e38ff28537ae734216bdbfe270 (diff)
downloadsrc-56e53cb8ef000c3ef72337a4095987a932cdedef.tar.gz
src-56e53cb8ef000c3ef72337a4095987a932cdedef.zip
Prefer uintXX_t to u_intXX_t
A foolish consistency is the hobgoblin of little minds, adored by little statesmen and philosophers and divines. With consistency a great soul has simply nothing to do. -- Ralph Waldo Emerson
Notes
Notes: svn path=/head/; revision=330864
Diffstat (limited to 'stand/i386/loader')
-rw-r--r--stand/i386/loader/main.c4
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 */