Skip to content

Commit

Permalink
remove bogus print
Browse files Browse the repository at this point in the history
  • Loading branch information
ndrewh committed Nov 13, 2024
1 parent 44b12b7 commit bb56737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pyda/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def hook_after_call(self, addr, callback):
def call_hook(p):
retaddr = int.from_bytes(p.read(p.regs.rsp, 8), "little")
def after_call_hook(p):
print(f"after call to {hex(addr)}")
# print(f"after call to {hex(addr)}")
callback(p)
self.unhook(retaddr, after_call_hook)
self.hook(retaddr, after_call_hook)
Expand Down

0 comments on commit bb56737

Please sign in to comment.