From 188204ac0ef18800207393e9b71d7d2a95d5f408 Mon Sep 17 00:00:00 2001 From: rbuj Date: Thu, 28 Oct 2021 10:31:27 +0200 Subject: pluma: fix build warning about missing field initializer --- pluma/pluma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1