diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-08-12 23:32:21 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-08-12 23:32:21 (GMT) |
commit | 9cfe738c2e9bb49eb2872e92bc4422c548edb517 (patch) | |
tree | ee8dbe5965b9d46394395b8beee87676e098a9f1 /src/graph | |
parent | fc49e98dc2b3e0ae08a5874ecacaef046a0f3ec1 (diff) |
Cleaned the code and handled file binaries properly.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@259 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
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++) { |