diff options
author | rbuj <[email protected]> | 2021-10-28 11:59:13 +0200 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2022-01-01 12:00:31 +0100 |
commit | 59c6c788da2ba71b16b50e6141556f6f030c3f8d (patch) | |
tree | f51bf6587376c627354b9638ab7b58b040fc129c /src/gpm-main.c | |
parent | 2741b990288cfb82957b79150c4391f29e561df1 (diff) | |
download | mate-power-manager-59c6c788da2ba71b16b50e6141556f6f030c3f8d.tar.bz2 mate-power-manager-59c6c788da2ba71b16b50e6141556f6f030c3f8d.tar.xz |
Fix build warnings about missing field initializer
Diffstat (limited to 'src/gpm-main.c')
-rw-r--r-- | src/gpm-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpm-main.c b/src/gpm-main.c index 4212f32..1dbf59a 100644 --- a/src/gpm-main.c +++ b/src/gpm-main.c @@ -172,7 +172,7 @@ main (int argc, char *argv[]) N_("Exit after a small delay (for debugging)"), NULL }, { "immediate-exit", '\0', 0, G_OPTION_ARG_NONE, &immediate_exit, N_("Exit after the manager has loaded (for debugging)"), NULL }, - { NULL} + { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL } }; setlocale (LC_ALL, ""); |