mirror of https://github.com/GNOME/gimp.git
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:
parent
18fd05d33f
commit
b81276ca83
|
@ -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
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue