forked from Bananymous/banan-os
Kernel: kmalloc free error prints the pointer
This commit is contained in:
parent
911922c6a3
commit
9a416e8ae8
|
@ -383,7 +383,7 @@ void kfree(void* address)
|
||||||
}
|
}
|
||||||
else
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue