* 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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user