From b060643941c6c7d2dd684eaa8550f1a5ee768f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Holz?= Date: Tue, 12 Dec 2023 20:59:40 +0100 Subject: [PATCH] Kernel: Remove outdated comment from `console_out` --- Kernel/kprintf.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Kernel/kprintf.cpp b/Kernel/kprintf.cpp index c9b0bb28ba..ab21e2414a 100644 --- a/Kernel/kprintf.cpp +++ b/Kernel/kprintf.cpp @@ -72,8 +72,6 @@ static void console_out(char ch) if (s_serial_debug_enabled) serial_putch(ch); - // It would be bad to reach the assert in ConsoleDevice()::the() and do a stack overflow - if (DeviceManagement::the().is_console_device_attached()) { DeviceManagement::the().console_device().put_char(ch); } else {