Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mahaloz committed Aug 25, 2024
1 parent 8027ebe commit dd284ae
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libbs/decompilers/ida/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ def ida_struct_changed(self, sid: int, new_name=None, deleted=False, member_dele
ida_struct.get_struc_size(struct_ptr),
{},
)
print("Initial bs_struct: ", bs_struct)

for mptr in struct_ptr.members:
m_name = ida_struct.get_member_name(mptr.id)
Expand All @@ -281,7 +280,6 @@ def ida_struct_changed(self, sid: int, new_name=None, deleted=False, member_dele
m_size = ida_struct.get_member_size(mptr)
bs_struct.add_struct_member(m_name, m_off, m_type, m_size)

print("Final bs_struct: ", bs_struct)
self.interface.struct_changed(bs_struct, deleted=False)
return 0

Expand Down

0 comments on commit dd284ae

Please sign in to comment.