1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-22 15:47:37 +00:00

In sys/boot/i386/boot2/boot2.c, change the type of the 'opts' variable

from uint16_t back to uint32_t.  The actual option bitmasks (RB_* and
RBX_*) assume at least a 32 bit variable.

Submitted by:	rdivacky
This commit is contained in:
Dimitry Andric 2011-02-21 19:46:02 +00:00
parent b28f46973d
commit 199ba798b3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=218926

View File

@ -132,7 +132,7 @@ static struct dsk {
} dsk;
static char cmd[512], cmddup[512];
static char kname[1024];
static uint16_t opts;
static uint32_t opts;
static int comspeed = SIOSPD;
static struct bootinfo bootinfo;
static uint8_t ioctrl = IO_KEYBOARD;