Kernel: kmalloc free error prints the pointer

This commit is contained in:
Bananymous
2023-05-31 00:34:56 +03:00
parent 911922c6a3
commit 9a416e8ae8

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);
}
}