summaryrefslogtreecommitdiff
path: root/src/gui/menus/debug.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2013-03-01 09:20:43 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2013-03-01 09:20:43 (GMT)
commit80a2bc2ab0f8f831a45bba4bbbbad4b15cbf0645 (patch)
tree704e87f3f08b88606e559869d1c32c7e8b418d04 /src/gui/menus/debug.c
parentf95e0761e1284b7ab48244452f56d96803c48b87 (diff)
Fixed GCC warnings.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@342 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui/menus/debug.c')
-rw-r--r--src/gui/menus/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/menus/debug.c b/src/gui/menus/debug.c
index 666a605..eb58835 100644
--- a/src/gui/menus/debug.c
+++ b/src/gui/menus/debug.c
@@ -93,10 +93,10 @@ GtkWidget *build_menu_debug(GObject *ref, GtkAccelGroup *accgroup)
static void mcb_debug_start_stop(GtkMenuItem *menuitem, GObject *ref)
{
- GLoadedBinary *binary; /* Edition courante */
+ //GLoadedBinary *binary; /* Edition courante */
GBinaryDebugger *debugger; /* Module prêt à emploi */
- binary = (GLoadedBinary *)g_object_get_data(ref, "current_binary");
+ //binary = (GLoadedBinary *)g_object_get_data(ref, "current_binary");
debugger = NULL;//get_main_debugger_for_binary(get_current_openida_project(), binary);
if (debugger == NULL)