Kernel: kmalloc free error prints the pointer

This commit is contained in:
Bananymous
2023-05-31 00:34:56 +03:00
parent e3d3788f28
commit 959c0fc572

View File

@@ -383,7 +383,7 @@ void kfree(void* address)
}
else
{
Kernel::panic("Trying to free a pointer outsize of kmalloc memory");
Kernel::panic("Trying to free a pointer {8H} outsize of kmalloc memory", address);
}
}