summaryrefslogtreecommitdiff
path: root/src/format/symbol.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-09-26 18:24:23 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-09-26 18:24:23 (GMT)
commit7972f2da7d0e363fe918992cb5661b17ee3577d7 (patch)
tree6bf42830f32315d01f90c551778b47cc62bba639 /src/format/symbol.c
parent79f384b20e00977f8450920a8a8983b818d302f8 (diff)
Defined a proper cache for routine names with their packages.
Diffstat (limited to 'src/format/symbol.c')
-rw-r--r--src/format/symbol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format/symbol.c b/src/format/symbol.c
index 2c2e5ad..965487d 100644
--- a/src/format/symbol.c
+++ b/src/format/symbol.c
@@ -329,7 +329,7 @@ const char *g_binary_symbol_get_label(const GBinSymbol *symbol)
case STP_ROUTINE:
case STP_ENTRY_POINT:
case STP_CODE_LABEL:
- result = g_binary_routine_get_name(symbol->extra.routine);
+ result = g_binary_routine_get_declarator(symbol->extra.routine, false);
break;
default: