diff options
Diffstat (limited to 'src/arch/x86/acpi/debug.asl')
-rw-r--r-- | src/arch/x86/acpi/debug.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/acpi/debug.asl b/src/arch/x86/acpi/debug.asl index 41d123520e..728193e44f 100644 --- a/src/arch/x86/acpi/debug.asl +++ b/src/arch/x86/acpi/debug.asl @@ -76,7 +76,7 @@ Method(OUTC, 1) Method(DBGN, 1) { and(Arg0, 0x0f, Local0) - if (LLess(Local0, 10)) { + if (Local0 < 10) { Local0 += 0x30 } else { Local0 += 0x37 |