* Fix incorrect class name in kprintfs

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38995 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ithamar R. Adema
2010-10-18 01:43:47 +00:00
parent cd4265c803
commit fb2cbc781e
+2 -2
View File
@@ -124,7 +124,7 @@ struct DebugAllocPool {
// check address
if (((addr_t)address & 7) != 0 || address <= fBase + 1
|| address >= fBase + fEnd) {
kprintf("DebugAllocator::Free(%p): bad address\n", address);
kprintf("DebugAllocPool::Free(%p): bad address\n", address);
return;
}
@@ -132,7 +132,7 @@ struct DebugAllocPool {
allocation_header* header = (allocation_header*)address - 1;
uint32 index = header - fBase;
if (header->free) {
kprintf("DebugAllocator::Free(%p): double free\n", address);
kprintf("DebugAllocPool::Free(%p): double free\n", address);
return;
}