idc.py: Fixed GetDebuggerEvent().

This commit is contained in:
gergely.erdelyi
2009-03-02 17:23:47 +00:00
parent 32654c9ee8
commit b961ced412
+1 -1
View File
@@ -6481,7 +6481,7 @@ def GetDebuggerEvent(wfne, timeout):
@return: debugger event codes, see below
"""
return idaapi.wait_for_next_even(wfne, timeout)
return idaapi.wait_for_next_event(wfne, timeout)
def ResumeProcess(): return GetDebuggerEvent(WFNE_CONT|WFNE_NOWAIT, 0)