mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
Fix missing initializer warning in gio/gio-tool-monitor.c
gio/gio-tool-monitor.c:48:3: error: missing initializer for field ‘description’ of ‘GOptionEntry’ {aka ‘const struct _GOptionEntry’} 48 | { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &watch_default }, | ^
This commit is contained in:
parent
85f2492111
commit
a54ebd6860
@ -45,7 +45,8 @@ static const GOptionEntry entries[] = {
|
||||
N_("Report moves and renames as simple deleted/created events"), NULL },
|
||||
{ "mounts", 'm', 0, G_OPTION_ARG_NONE, &mounts,
|
||||
N_("Watch for mount events"), NULL },
|
||||
{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &watch_default },
|
||||
{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &watch_default,
|
||||
NULL, NULL },
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user