Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pax-utils:master commit in: /
Date: Sat, 02 Jan 2016 15:26:30
Message-Id: 1451748377.26a5965e9cef652e755b45175c424fa117d7b87e.vapier@gentoo
1 commit: 26a5965e9cef652e755b45175c424fa117d7b87e
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 15:26:17 2016 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 15:26:17 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=26a5965e
7
8 build: include -Wmisleading-indentation when available
9
10 Makefile | 3 ++-
11 1 file changed, 2 insertions(+), 1 deletion(-)
12
13 diff --git a/Makefile b/Makefile
14 index b09c3b0..f6fc827 100644
15 --- a/Makefile
16 +++ b/Makefile
17 @@ -13,7 +13,8 @@ _WFLAGS := \
18 -Wdeclaration-after-statement \
19 -Wextra \
20 -Wsequence-point \
21 - -Wstrict-overflow
22 + -Wstrict-overflow \
23 + -Wmisleading-indentation
24 WFLAGS := -Wall -Wunused -Wimplicit -Wshadow -Wformat=2 \
25 -Wmissing-declarations -Wmissing-prototypes -Wwrite-strings \
26 -Wbad-function-cast -Wnested-externs -Wcomment -Winline \