diff options
author | Marvin Borner | 2020-04-16 19:06:33 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-16 19:06:33 +0200 |
commit | 4014a36377ff69f6433e7b0af2144bc3a7d29ca7 (patch) | |
tree | 9440ac3749d406c6df9917d4bb3a19de6ea99655 /src/kernel/acpi | |
parent | fc26e84ef8c6255926811fe639e3e466b756e581 (diff) |
Many fix attempts for the divide by zero exception
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 +} |