Skip to content

Commit

Permalink
scripts/show-capabilities-by-function.py: fix incorrect function address
Browse files Browse the repository at this point in the history
  • Loading branch information
fariss committed Jul 29, 2024
1 parent cf3494d commit 8476aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/show-capabilities-by-function.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def render_matches_by_function(doc: rd.ResultDocument):
for f in doc.meta.analysis.feature_counts.functions:
if not matches_by_function.get(f.address, {}):
continue
ostream.writeln(f"function at {capa.render.verbose.format_address(addr)} with {f.count} features: ")
ostream.writeln(f"function at {capa.render.verbose.format_address(f.address)} with {f.count} features: ")
for rule_name in sorted(matches_by_function[f.address]):
ostream.writeln(" - " + rule_name)

Expand Down

0 comments on commit 8476aee

Please sign in to comment.