diff options
Diffstat (limited to 'src/kernel/acpi')
-rw-r--r-- | src/kernel/acpi/acpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 +} |