Skip to content

Commit a9aea09

Browse files
committed
Fix leftover
1 parent 2557e48 commit a9aea09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bindiff/bindiff.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def secondary_unmatched_function(self) -> list[FunctionBinExport]:
110110
:return: list of unmatched functions in secondary
111111
"""
112112
funs = []
113-
for fun_addr, fun in self.primary.items():
114-
if fun_addr not in self.primary_functions_match:
113+
for fun_addr, fun in self.secondary.items():
114+
if fun_addr not in self.secondary_functions_match:
115115
funs.append(fun)
116116
return funs
117117

0 commit comments

Comments
 (0)