Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GO_Utils/Types.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ def processMethods(self, offst):
func_addr1 = self.text_addr + func_body1
func_body2 = self.getDword(sid, offst, "tfn")
func_addr2 = self.text_addr + func_body1
return "%s %x %x %x" % (name, type_meth_addr1, func_addr1, func_addr2)
return f"{name} {type_meth_addr1} {func_addr1} {func_addr2}"

def makeMap(self, offset):
idc.SetType(offset, "mapType")
Expand Down