From b3c1d9faef50191a5a445cbb16256b147d30c9d8 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 29 Aug 2023 20:54:10 +0200 Subject: xt: avoid "-Wmissing-field-initializers" for "original_opts" Avoid this warning with clang: CC src/xt.lo src/xt.c:353:9: error: missing field 'has_arg' initializer [-Werror,-Wmissing-field-initializers] { NULL }, ^ The warning seems not very useful, because it's well understood that specifying only some initializers leaves the remaining fields initialized with the default. However, as this warning is only hit once in the code base, it doesn't seem that we violate this style frequently. Hence, fix it instead of disabling the warning. Signed-off-by: Thomas Haller Signed-off-by: Pablo Neira Ayuso --- src/xt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xt.c b/src/xt.c index df7140b4..a217cc7b 100644 --- a/src/xt.c +++ b/src/xt.c @@ -350,7 +350,7 @@ err: } static struct option original_opts[] = { - { NULL }, + { }, }; static struct xtables_globals xt_nft_globals = { -- cgit v1.2.3