summaryrefslogtreecommitdiff
path: root/tools/mate-session-save.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-28 11:15:15 +0200
committerraveit65 <[email protected]>2023-04-19 20:43:06 +0200
commit46f7c21f60c071643f333133bcfd37e1e73ee558 (patch)
tree82ea535fa2dc14f8b3517598d8c9201fe180f7d8 /tools/mate-session-save.c
parent2291bf3c2a9764aabb92e32c604732df8b75c6aa (diff)
downloadmate-session-manager-46f7c21f60c071643f333133bcfd37e1e73ee558.tar.bz2
mate-session-manager-46f7c21f60c071643f333133bcfd37e1e73ee558.tar.xz
Fix build warnings about missing field initializer
Diffstat (limited to 'tools/mate-session-save.c')
-rw-r--r--tools/mate-session-save.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mate-session-save.c b/tools/mate-session-save.c
index 69027b8..27a7ad9 100644
--- a/tools/mate-session-save.c
+++ b/tools/mate-session-save.c
@@ -73,7 +73,7 @@ static GOptionEntry options[] = {
{"session-name", 's', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_STRING, &session_name, N_("Set the current session name"), N_("NAME")},
{"kill", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &kill_session, N_("Kill session"), NULL},
{"silent", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &no_interaction, N_("Do not require confirmation"), NULL},
- {NULL}
+ {NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL}
};
static void display_error(const char* message)