diff options
author | rbuj <[email protected]> | 2021-10-28 14:27:24 +0200 |
---|---|---|
committer | mbkma <[email protected]> | 2021-11-11 19:49:25 +0100 |
commit | 9d702031671fa8aa4cdf6ea512b3f59b8ea3da37 (patch) | |
tree | 7fe044b6473f9c56ed4aed153383ce445f03d985 /capplets/default-applications/mate-da-capplet.c | |
parent | f82acb016938a4177f64906a133c224a0b8c51be (diff) | |
download | mate-control-center-9d702031671fa8aa4cdf6ea512b3f59b8ea3da37.tar.bz2 mate-control-center-9d702031671fa8aa4cdf6ea512b3f59b8ea3da37.tar.xz |
Fix build warnings about missing field initializer
Diffstat (limited to 'capplets/default-applications/mate-da-capplet.c')
-rw-r--r-- | capplets/default-applications/mate-da-capplet.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/capplets/default-applications/mate-da-capplet.c b/capplets/default-applications/mate-da-capplet.c index e5ade48b..e0e13d34 100644 --- a/capplets/default-applications/mate-da-capplet.c +++ b/capplets/default-applications/mate-da-capplet.c @@ -782,7 +782,9 @@ main(int argc, char** argv) N_("Specify the name of the page to show (internet|multimedia|system|a11y)"), N_("page") }, - {NULL} + { + NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL + } }; GOptionContext* context = g_option_context_new(_("- MATE Default Applications")); |