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
This commit is contained in:
Mikael Magnusson 2011-03-09 15:35:52 +01:00
parent 18fd05d33f
commit b81276ca83
1 changed files with 1 additions and 1 deletions

View File

@ -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
},