diff options
author | rbuj <[email protected]> | 2021-10-28 10:31:27 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-03-10 22:28:32 +0100 |
commit | 188204ac0ef18800207393e9b71d7d2a95d5f408 (patch) | |
tree | 1624af5c9502fc455b813b2aa537573f9e350a9d | |
parent | 98b80aa2be3add2ce4ef86a79c4e348db43c32d1 (diff) | |
download | pluma-188204ac0ef18800207393e9b71d7d2a95d5f408.tar.bz2 pluma-188204ac0ef18800207393e9b71d7d2a95d5f408.tar.xz |
pluma: fix build warning about missing field initializer
-rw-r--r-- | pluma/pluma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pluma/pluma.c b/pluma/pluma.c index d81b9ae8..b3ccf468 100644 --- a/pluma/pluma.c +++ b/pluma/pluma.c @@ -123,7 +123,7 @@ static const GOptionEntry options [] = { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, &remaining_args, NULL, N_("[FILE...]") }, /* collects file arguments */ - {NULL} + { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL } }; static void |