diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-10-28 20:20:41 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-10-28 20:20:41 (GMT) |
commit | 2c70e3332b43bdcbe215081b697395d254418e48 (patch) | |
tree | d3287462eccd65d189f82de8428692bbaf477cbc /src/gui/dialogs | |
parent | 0f0cb560006c0ef5eb690f89c4ce720936c9d6f6 (diff) |
Cleaned the structure for instructions a little bit.
Diffstat (limited to 'src/gui/dialogs')
-rw-r--r-- | src/gui/dialogs/gotox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/dialogs/gotox.c b/src/gui/dialogs/gotox.c index 0511be8..fe18e4e 100644 --- a/src/gui/dialogs/gotox.c +++ b/src/gui/dialogs/gotox.c @@ -297,7 +297,7 @@ GtkWidget *create_gotox_dialog_for_cross_references(GtkWindow *parent, GLoadedBi else { g_arch_instruction_rlock_dest(instr); - count = g_arch_instruction_get_destinations(instr, &list, NULL, NULL); + count = g_arch_instruction_get_destinations(instr, &list, NULL); } for (i = 0; i < count; i++) |