From 73b03860f49d75f614869ff774dc28c3bba28c08 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 2 May 2026 15:54:37 +0300 Subject: [PATCH] Kernel: Use empty string instead of nullptr for non existing proc name --- kernel/kernel/IDT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/kernel/IDT.cpp b/kernel/kernel/IDT.cpp index a78d2697..b8fb6795 100644 --- a/kernel/kernel/IDT.cpp +++ b/kernel/kernel/IDT.cpp @@ -293,7 +293,7 @@ namespace Kernel const char* process_name = (tid && Thread::current().has_process()) ? Process::current().name() - : nullptr; + : ""; #if ARCH(x86_64) dwarnln(