diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-03-19 23:20:57 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-03-19 23:20:57 (GMT) |
commit | e5bda7574625e43c2576b9457fc2bd89a79aa43d (patch) | |
tree | 7df25347eed96176e59a7813ea230a49bcf0dbe5 /src/analysis | |
parent | 94fd405bb0c2e6dfa43324b04a336ffb611c58ce (diff) |
Removed the useless STP_FUNCTION symbol type.
Diffstat (limited to 'src/analysis')
-rw-r--r-- | src/analysis/disass/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/disass/output.c b/src/analysis/disass/output.c index a6e5f51..fcbc0c6 100644 --- a/src/analysis/disass/output.c +++ b/src/analysis/disass/output.c @@ -201,7 +201,7 @@ void print_disassembled_instructions(GBufferCache *cache, GCodingLanguage *lang, stype = g_binary_symbol_get_target_type(symbols[sym_index]); - if (stype == STP_ROUTINE || stype == STP_FUNCTION || stype == STP_ENTRY_POINT) + if (stype == STP_ROUTINE || stype == STP_ENTRY_POINT) { /* Impression de la marque de début */ |