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

Fix the build after r350570.

Signed char cannot compare to values above 0x7f.  Use unsigned instead.
This commit is contained in:
Justin Hibbits 2019-08-04 19:47:02 +00:00
parent 937a05ba81
commit a83733119d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350571

View File

@ -169,7 +169,7 @@ vga_pci_map_bios(device_t dev, size_t *size)
device_t pcib;
uint32_t rom_addr;
uint16_t config;
volatile char *bios;
volatile unsigned char *bios;
int i, rid, found;
#if defined(__amd64__) || defined(__i386__)