diff options
author | rbuj <[email protected]> | 2021-10-28 13:49:11 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2022-08-20 20:07:33 +0000 |
commit | 0f2374f59767e2117456a88ada65e207fa471cd6 (patch) | |
tree | 27cc7278f11c26d046135d7d0bbae389a48dbc4e /mate-about | |
parent | b9a25a4f24ffb23874e0923f63c75149f13b071c (diff) | |
download | mate-desktop-0f2374f59767e2117456a88ada65e207fa471cd6.tar.bz2 mate-desktop-0f2374f59767e2117456a88ada65e207fa471cd6.tar.xz |
Fix build warnings about missing field initializer
Diffstat (limited to 'mate-about')
-rw-r--r-- | mate-about/mate-about.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-about/mate-about.h.in b/mate-about/mate-about.h.in index bef6f8d..503a513 100644 --- a/mate-about/mate-about.h.in +++ b/mate-about/mate-about.h.in @@ -664,7 +664,7 @@ static void mate_about_on_activate(GtkApplication* app); // arguments definitions static GOptionEntry command_entries[] = { {"version", 'v', 0, G_OPTION_ARG_NONE, &mate_about_nogui, "Show MATE version", NULL}, - {NULL} + {NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL} }; #endif /* __MATE_ABOUT_H__ */ |