arch_clear_watchpoint(): Passed incorrect flag to clear_breakpoint(), so
watchpoints would never be cleared. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37503 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -684,7 +684,7 @@ arch_set_watchpoint(void *address, uint32 type, int32 length)
|
|||||||
status_t
|
status_t
|
||||||
arch_clear_watchpoint(void *address)
|
arch_clear_watchpoint(void *address)
|
||||||
{
|
{
|
||||||
return clear_breakpoint(address, false);
|
return clear_breakpoint(address, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user