Merge pull request #1367 from ggold7046/patch-3

Update match-function-id.py
This commit is contained in:
Willi Ballenthin
2023-03-11 13:13:27 +01:00
committed by GitHub

View File

@@ -125,7 +125,7 @@ def main(argv=None):
for analyzer in analyzers:
name = viv_utils.flirt.match_function_flirt_signatures(analyzer.matcher, vw, function)
if name:
print("0x%04x: %s" % (function, name))
print(f"0x{function:04x}: {name}")
return 0