diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-05-30 20:31:59 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-05-30 20:31:59 (GMT) |
commit | 36760a757f4c3cdecd04d678a41d3484dcdac566 (patch) | |
tree | b4987539ac2bc5bfd65eec1600b464b11766cd0d /src/gtkext | |
parent | 3154db88ce14aa681cc553a8910edba1e69d8c2b (diff) |
Resolved a suitable symbol depending on the request tolerance.
Diffstat (limited to 'src/gtkext')
-rw-r--r-- | src/gtkext/gtkstatusstack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkext/gtkstatusstack.c b/src/gtkext/gtkstatusstack.c index 95166d7..cff10fe 100644 --- a/src/gtkext/gtkstatusstack.c +++ b/src/gtkext/gtkstatusstack.c @@ -578,7 +578,7 @@ void gtk_status_stack_update_current_instruction(GtkStatusStack *stack, const GL /* Symbole concerné */ - if (g_binary_format_resolve_symbol(G_BIN_FORMAT(format), addr, &symbol, &diff)) + if (g_binary_format_resolve_symbol(G_BIN_FORMAT(format), addr, false, &symbol, &diff)) { label = g_binary_symbol_get_label(symbol); |