idc.py: Removed FIXME from PatchByte()

idc.py: Removed trailing whitspaces
This commit is contained in:
gergely.erdelyi 2009-01-25 14:12:59 +00:00
parent 473bd07bdb
commit 507ea15b7a

View File

@ -434,6 +434,7 @@ def SaveBase(idbname, flags=0):
DBFL_BAK = 0x04 # create backup file DBFL_BAK = 0x04 # create backup file
def Exit(code): def Exit(code):
""" """
Stop execution of IDC program, close the database and exit to OS Stop execution of IDC program, close the database and exit to OS
@ -1345,8 +1346,6 @@ def PatchByte(ea, value):
@param value: new value of the byte @param value: new value of the byte
@return: 1 if successful, 0 if not @return: 1 if successful, 0 if not
FIXME: Check that patch_byte patches memory too
""" """
return idaapi.patch_byte(ea, value) return idaapi.patch_byte(ea, value)