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:
Ingo Weinhold 2010-07-13 23:56:14 +00:00
parent 2fd209cf00
commit e40e5ebf8c
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}