summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2017-12-21 18:01:44 +0000
committerAtomic Bot <atomic-devel@projectatomic.io>2017-12-21 22:34:26 +0000
commitcac42bb6f576696033e70a2b1cb2c947b95e2306 (patch)
treea735c0a317cce31d97d7c884cf8bb71fb50fb702 /configure.ac
parent117d5c9f771e919dc33bdc8a616867212713f0bd (diff)
downloadostree-cac42bb6f576696033e70a2b1cb2c947b95e2306.tar.gz
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 <withnall@endlessm.com> Closes: #1388 Approved by: jlebon
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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 \