diff options
Diffstat (limited to 'src/gui/panels')
-rw-r--r-- | src/gui/panels/symbols.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/panels/symbols.c b/src/gui/panels/symbols.c index 6ea7a72..7901df0 100644 --- a/src/gui/panels/symbols.c +++ b/src/gui/panels/symbols.c @@ -799,7 +799,7 @@ static void reload_symbols_for_new_list_view(const GSymbolsPanel *panel, GtkStat symbol != NULL; symbol = get_symbol_iterator_next(siter)) { - switch (g_binary_symbol_get_target_type(symbol)) + switch (g_binary_symbol_get_stype(symbol)) { case STP_ROUTINE: case STP_ENTRY_POINT: @@ -1080,7 +1080,7 @@ static void reload_symbols_for_new_tree_view(const GSymbolsPanel *panel, GtkStat symbol != NULL; symbol = get_symbol_iterator_next(siter)) { - switch (g_binary_symbol_get_target_type(symbol)) + switch (g_binary_symbol_get_stype(symbol)) { case STP_ROUTINE: case STP_ENTRY_POINT: @@ -1480,7 +1480,7 @@ static bool is_symbol_matching(const symbols_update_data *data, const GBinSymbol #ifndef NDEBUG - type = g_binary_symbol_get_target_type(symbol); + type = g_binary_symbol_get_stype(symbol); assert(type == STP_ROUTINE || type == STP_ENTRY_POINT || type == STP_OBJECT); |