From 4014a36377ff69f6433e7b0af2144bc3a7d29ca7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 16 Apr 2020 19:06:33 +0200 Subject: Many fix attempts for the divide by zero exception --- src/kernel/acpi/acpi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/acpi/acpi.c') diff --git a/src/kernel/acpi/acpi.c b/src/kernel/acpi/acpi.c index 8eee5f1..8733987 100644 --- a/src/kernel/acpi/acpi.c +++ b/src/kernel/acpi/acpi.c @@ -184,7 +184,7 @@ void acpi_poweroff() { cli(); if (SCI_EN == 0) { - warn("ACPI shutdown is not supported\n"); + warn("ACPI shutdown is not supported"); return; } @@ -207,4 +207,4 @@ void reboot() good = inb(0x64); outb(0x64, 0xFE); halt_loop(); -} \ No newline at end of file +} -- cgit v1.2.3