From aff0c6b49bdc1ed41f6455476796cece34ae2128 Mon Sep 17 00:00:00 2001 From: Yacine Elhamer Date: Mon, 26 Jun 2023 09:41:14 +0100 Subject: [PATCH] show-featurex.py: bugfix in ida_main() --- scripts/show-features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/show-features.py b/scripts/show-features.py index ff37e21d..9b4ffa8d 100644 --- a/scripts/show-features.py +++ b/scripts/show-features.py @@ -277,7 +277,7 @@ def ida_main(): print(f"{hex(function)} not a function") return -1 - print_function_features(function_handles, extractor) + print_static_features(function_handles, extractor) return 0