diff options
author | rbuj <[email protected]> | 2021-10-28 13:32:42 +0200 |
---|---|---|
committer | rbuj <[email protected]> | 2021-10-28 13:32:42 +0200 |
commit | 3d0020bcfc9e036136c588a1a44e39638d2eb567 (patch) | |
tree | 7a7f1a9f4f6ec37183475dd148d72bdb2fbf2b14 /maximus/main.c | |
parent | 0778cc8da5705f2a4b4e48b8faf72ed9a1b8405f (diff) | |
download | mate-netbook-3d0020bcfc9e036136c588a1a44e39638d2eb567.tar.bz2 mate-netbook-3d0020bcfc9e036136c588a1a44e39638d2eb567.tar.xz |
maximus: fix build warning about missing field initializermissing-field-initializers
Diffstat (limited to 'maximus/main.c')
-rw-r--r-- | maximus/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maximus/main.c b/maximus/main.c index 89ea7ab..ee5c760 100644 --- a/maximus/main.c +++ b/maximus/main.c @@ -55,7 +55,7 @@ GOptionEntry entries[] = "Do not automatically maximize every window", NULL }, { - NULL + NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL } }; |