Removed the ERR_VM_PF_BAD_ADDRESS constant, and use B_BAD_ADDRESS instead.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10307 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-11-30 18:27:38 +00:00
parent 7028b4da5d
commit d3ee51c1d2

View File

@ -2415,7 +2415,7 @@ vm_soft_fault(addr_t originalAddress, bool isWrite, bool isUser)
|| area->cache_ref != top_cache_ref
|| (address - area->base + area->cache_offset) != cache_offset) {
dprintf("vm_soft_fault: address space layout changed effecting ongoing soft fault\n");
err = ERR_VM_PF_BAD_ADDRESS; // BAD_ADDRESS
err = B_BAD_ADDRESS;
}
}