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/format/elf | |
parent | 94fd405bb0c2e6dfa43324b04a336ffb611c58ce (diff) |
Removed the useless STP_FUNCTION symbol type.
Diffstat (limited to 'src/format/elf')
-rw-r--r-- | src/format/elf/helper_x86.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/format/elf/helper_x86.c b/src/format/elf/helper_x86.c index 596911f..826ac40 100644 --- a/src/format/elf/helper_x86.c +++ b/src/format/elf/helper_x86.c @@ -140,7 +140,7 @@ bool load_elf_x86_relocated_symbols(GElfFormat *format, const elf_shdr *relxxx, name = "unknown"; } - symbol = g_binary_symbol_new(STP_FUNCTION); + symbol = g_binary_symbol_new(STP_ROUTINE); g_binary_format_add_symbol(G_BIN_FORMAT(format), symbol); break; @@ -323,7 +323,7 @@ void translate_exe_elf_relocations(GElfFormat *format, GArchInstruction **instru /* Symbole uniquement */ - symbol = g_binary_symbol_new(STP_FUNCTION); + symbol = g_binary_symbol_new(STP_ROUTINE); g_binary_symbol_attach_routine(symbol, routine); @@ -431,7 +431,7 @@ void translate_dyn_elf_relocations(GElfFormat *format, GArchInstruction **instru /* Symbole uniquement */ - symbol = g_binary_symbol_new(STP_FUNCTION); + symbol = g_binary_symbol_new(STP_ROUTINE); g_binary_symbol_attach_routine(symbol, routine); |