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 /font-viewer/font-view.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 'font-viewer/font-view.c')
-rw-r--r-- | font-viewer/font-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/font-viewer/font-view.c b/font-viewer/font-view.c index 588b6ba5..995e2021 100644 --- a/font-viewer/font-view.c +++ b/font-viewer/font-view.c @@ -791,8 +791,8 @@ action_about (GSimpleAction *action, } static GActionEntry action_entries[] = { - { "about", action_about, NULL, NULL, NULL }, - { "quit", action_quit, NULL, NULL, NULL } + { "about", action_about, NULL, NULL, NULL, { 0 } }, + { "quit", action_quit, NULL, NULL, NULL, { 0 } } }; static void |