diff --git a/python/idc.py b/python/idc.py index ee8a446..f670486 100644 --- a/python/idc.py +++ b/python/idc.py @@ -6615,7 +6615,7 @@ def RunTo(ea): @return: success """ - return idaapi.run_to() + return idaapi.run_to(ea) def StepUntilRet(): @@ -6945,7 +6945,7 @@ def GetExceptionQty(): """ Get number of defined exception codes """ - return iddapi.get_exception_qty() + return idaapi.get_exception_qty() def GetExceptionCode(idx):