Fix couple of style nits missed in the previous commit.

This commit is contained in:
Jung-uk Kim 2009-09-25 20:06:31 +00:00
parent ee8cbcb471
commit 7ca724d57b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=197504

View File

@ -1101,7 +1101,7 @@ get_typematic(keyboard_t *kbd)
bzero(&regs, sizeof(regs));
regs.R_AH = 0xc0;
x86bios_intr(&regs, 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? */