remove semicolons

This commit is contained in:
xclusivor
2024-03-06 02:15:02 -05:00
parent d4b92485b1
commit 4a694d8a30
5 changed files with 7 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ def hook_intr(uc, intno, user_data):
# only handle Linux syscall
rip = uc.reg_read(UC_X86_REG_RIP)
if intno != 0x80:
print("=== 0x%x: got interrupt %x, quit" %(rip, intno));
print("=== 0x%x: got interrupt %x, quit" %(rip, intno))
uc.emu_stop()
return