Sophie

Sophie

distrib > Mageia > 1 > i586 > media > core-updates-src > by-pkgid > c5a7c80427d14ec72de12dc253c65ba2 > files > 12

gimp-2.6.11-7.2.mga1.src.rpm

From b81276ca83e6ec4c7df32c8f611f441d1dfc59ad Mon Sep 17 00:00:00 2001
From: Mikael Magnusson <mikachu@src.gnome.org>
Date: Wed, 09 Mar 2011 14:35:52 +0000
Subject: app: fix goption warning

Using G_OPTION_FLAG_NO_ARG with G_OPTION_ARG_NONE is not a valid combination,
glib 2.28.2 warns about it.

(gimp:20379): GLib-WARNING **: goption.c:2132: ignoring no-arg, optional-arg or filename flags (8) on option "debug-handlers" of type 0
---
diff --git a/app/main.c b/app/main.c
index aaa8ea7..5ccfb6c 100644
--- a/app/main.c
+++ b/app/main.c
@@ -231,7 +231,7 @@ static const GOptionEntry main_entries[] =
     N_("Debug in case of a crash (never|query|always)"), "<mode>"
   },
   {
-    "debug-handlers", 0, G_OPTION_FLAG_NO_ARG,
+    "debug-handlers", 0, 0,
     G_OPTION_ARG_NONE, &use_debug_handler,
     N_("Enable non-fatal debugging signal handlers"), NULL
   },
--
cgit v0.9