diff options
Diffstat (limited to 'src/graph')
-rw-r--r-- | src/graph/layout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graph/layout.c b/src/graph/layout.c index 21f7454..f8afad6 100644 --- a/src/graph/layout.c +++ b/src/graph/layout.c @@ -124,7 +124,7 @@ bool build_graph_view(GtkGraphView *view, GtkViewPanel **views, size_t count) static char *complete_graph_links(const GtkGraphView *view, GtkViewPanel **views, size_t count, char *desc) { - GOpenidaBinary *binary; /* Binaire rattaché aux vues */ + GLoadedBinary *binary; /* Binaire rattaché aux vues */ GArchInstruction *instrs; /* Instructions pour assembleur*/ GBufferView *buffer; /* Tampon d'une partie de code */ vmpa_t end; /* Adresse finale du tampon */ @@ -143,7 +143,7 @@ static char *complete_graph_links(const GtkGraphView *view, GtkViewPanel **views return desc; binary = gtk_view_panel_get_binary(views[0]); - instrs = g_openida_binary_get_instructions(binary); + instrs = g_loaded_binary_get_instructions(binary); for (i = 0; i < count; i++) { |