From d848520afed1d3a4e4c38307d3bf21e14bff096f Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Wed, 23 Aug 2023 19:57:00 +0200 Subject: ch_init(): Add braces to appease older clang compilers They produce a warning `suggest braces around initialization of subobject` otherwise. Add -Wno-missing-braces to silence old clang compilers And drop unnecessary braces in zeroing initializers. Reviewed-by: Hugo Landau Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/21823) --- Configure | 1 + 1 file changed, 1 insertion(+) (limited to 'Configure') diff --git a/Configure b/Configure index 364b699c57..cb11a55b7a 100755 --- a/Configure +++ b/Configure @@ -188,6 +188,7 @@ my @clang_devteam_warn = qw( -Wno-parentheses-equality -Wno-language-extension-token -Wno-extended-offsetof + -Wno-missing-braces -Wconditional-uninitialized -Wincompatible-pointer-types-discards-qualifiers -Wmissing-variable-declarations -- cgit v1.2.3