Merge pull request #1929 from xclusivor/master

Remove semicolons in python files
This commit is contained in:
2024-03-08 15:10:58 +08:00
committed by GitHub
5 changed files with 7 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ def hook_code(uc, address, size, user_data):
def hook_code64(uc, address, size, user_data):
print(">>> Tracing instruction at 0x%x, instruction size = 0x%x" %(address, size))
rip = uc.reg_read(UC_X86_REG_RIP)
print(">>> RIP is 0x%x" %rip);
print(">>> RIP is 0x%x" %rip)
# callback for tracing invalid memory access (READ or WRITE)

View File

@@ -74,7 +74,7 @@ def read_string(uc, address):
def hook_intr(uc, intno, user_data):
# only handle Linux syscall
if intno != 0x80:
print("got interrupt %x ???" %intno);
print("got interrupt %x ???" %intno)
uc.emu_stop()
return