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:
parent
2fd209cf00
commit
e40e5ebf8c
@ -684,7 +684,7 @@ arch_set_watchpoint(void *address, uint32 type, int32 length)
|
||||
status_t
|
||||
arch_clear_watchpoint(void *address)
|
||||
{
|
||||
return clear_breakpoint(address, false);
|
||||
return clear_breakpoint(address, true);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user