diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-08-14 20:53:39 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-08-14 20:53:39 (GMT) |
commit | 60b70b8701c822eddc65269773621690932a57bd (patch) | |
tree | d3a033c86eb091e3d81dec77b0855406d737596d /src/gtkext | |
parent | 2c97b766469c25b09c3b173aa6b8abdb066671c1 (diff) |
Updated the Python bindings for binary symbols.
Diffstat (limited to 'src/gtkext')
-rw-r--r-- | src/gtkext/gtkgraphdisplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkext/gtkgraphdisplay.c b/src/gtkext/gtkgraphdisplay.c index aeecc0f..ed3c923 100644 --- a/src/gtkext/gtkgraphdisplay.c +++ b/src/gtkext/gtkgraphdisplay.c @@ -941,7 +941,7 @@ static void gtk_graph_display_prepare_for_cursor(GtkGraphDisplay *display, const if (!found) goto no_symbol_found; - type = g_binary_symbol_get_target_type(symbol); + type = g_binary_symbol_get_stype(symbol); if (type != STP_ROUTINE && type != STP_ENTRY_POINT) goto bad_symbol_type; |