Update error message

This commit is contained in:
EnderIce2 2024-03-28 01:16:19 +02:00
parent 147027b613
commit 6d2c04d0c8
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -118,8 +118,8 @@ void KernelMainThread()
int tid = SpawnInit();
if (tid < 0)
{
KPrint("\eE85230Failed to start %s! Code: %d",
Config.InitPath, tid);
KPrint("\eE85230Failed to start %s! Error: %s (%d)",
Config.InitPath, strerror(tid), tid);
goto Exit;
}