summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJames Youngman <jay@gnu.org>2010-04-08 03:02:12 +0100
committerEric Blake <eblake@redhat.com>2010-04-09 14:39:45 -0600
commit85f6993aa94a87689fb1c4d49e5be4f271cb97d1 (patch)
tree2855b582f7ad9733a1589f3713c01ca12b448ac8 /doc
parentd0b4dde420cda77b0efea277ef2f6fbfac3e6b0b (diff)
downloadgnulib-85f6993aa94a87689fb1c4d49e5be4f271cb97d1.tar.gz
Add missing parenthesis in manywarnings example
Diffstat (limited to 'doc')
-rw-r--r--doc/manywarnings.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manywarnings.texi b/doc/manywarnings.texi
index d3edf1fb52..cb2cf295ef 100644
--- a/doc/manywarnings.texi
+++ b/doc/manywarnings.texi
@@ -18,7 +18,7 @@ nw="$nw -Wtraditional" # All compilers nowadays support ANSI C
nw="$nw -Wconversion" # These warnings usually don't point to mistakes.
nw="$nw -Wsign-conversion" # Likewise.
# Enable all GCC warnings not in this list.
-gl_MANYWARN_COMPLEMENT[warnings], [$warnings], [$nw])
+gl_MANYWARN_COMPLEMENT([warnings], [$warnings], [$nw])
for w in $warnings; do
gl_WARN_ADD([$w])
done