From cac42bb6f576696033e70a2b1cb2c947b95e2306 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 21 Dec 2017 18:01:44 +0000 Subject: [PATCH] build: Fix typo in -Wparentheses warning GCC supports -Wparentheses, not -Wparenthesis. https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wno-parentheses Signed-off-by: Philip Withnall Closes: #1388 Approved by: jlebon --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 697007d5..fa436ea6 100644 --- a/configure.ac +++ b/configure.ac @@ -43,7 +43,7 @@ CC_CHECK_FLAGS_APPEND([WARN_CFLAGS], [CFLAGS], [\ -Werror=switch \ -Werror=overflow \ -Werror=int-conversion \ - -Werror=parenthesis \ + -Werror=parentheses \ -Werror=undef \ -Werror=incompatible-pointer-types \ -Werror=misleading-indentation \