mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix couple of style nits missed in the previous commit.
This commit is contained in:
parent
ee8cbcb471
commit
7ca724d57b
1 changed files with 1 additions and 1 deletions
|
|
@ -1101,7 +1101,7 @@ get_typematic(keyboard_t *kbd)
|
|||
bzero(®s, sizeof(regs));
|
||||
regs.R_AH = 0xc0;
|
||||
x86bios_intr(®s, 0x15);
|
||||
if ((regs.R_FLG & PSL_C) || regs.R_AH)
|
||||
if ((regs.R_FLG & PSL_C) != 0 || regs.R_AH != 0)
|
||||
return (ENODEV);
|
||||
|
||||
/* Is int 16, function 0x09 supported? */
|
||||
|
|
|
|||
Loading…
Reference in a new issue