Kernel: Use empty string instead of nullptr for non existing proc name

This commit is contained in:
2026-05-02 15:54:37 +03:00
parent b9754859b2
commit 73b03860f4

View File

@@ -293,7 +293,7 @@ namespace Kernel
const char* process_name = (tid && Thread::current().has_process())
? Process::current().name()
: nullptr;
: "";
#if ARCH(x86_64)
dwarnln(