Fix typo introduced 5.5 years ago.

Note: this changes the #if test result, but the now #ifdef out code
has no effect.
This commit is contained in:
matthieu 2016-03-06 16:09:27 +00:00
parent ea0cb93282
commit 926017f7f5

View File

@ -286,7 +286,7 @@ acquire_vt:
if (ioctl(xf86Info.consoleFd, VT_SETMODE, &vtmode) < 0) {
FatalError("xf86OpenConsole: VT_SETMODE VT_PROCESS failed");
}
#if !defined(__0penBSD__) && !defined(USE_DEV_IO) && !defined(USE_I386_IOPL)
#if !defined(__OpenBSD__) && !defined(USE_DEV_IO) && !defined(USE_I386_IOPL)
if (ioctl(xf86Info.consoleFd, KDENABIO, 0) < 0) {
FatalError("xf86OpenConsole: KDENABIO failed (%s)",
strerror(errno));