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

@@ -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