From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6D9701384B4 for ; Sat, 2 Jan 2016 15:26:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DBF9E087A; Sat, 2 Jan 2016 15:26:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3BBD1E087A for ; Sat, 2 Jan 2016 15:26:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E6CF533FEB1 for ; Sat, 2 Jan 2016 15:26:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 778EEC89 for ; Sat, 2 Jan 2016 15:26:23 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1451748377.26a5965e9cef652e755b45175c424fa117d7b87e.vapier@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: / X-VCS-Repository: proj/pax-utils X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 26a5965e9cef652e755b45175c424fa117d7b87e X-VCS-Branch: master Date: Sat, 2 Jan 2016 15:26:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8dea762f-7175-4df4-8a88-75ab2fabe364 X-Archives-Hash: ee1a12d17540f75de1726a47fc34a314 commit: 26a5965e9cef652e755b45175c424fa117d7b87e Author: Mike Frysinger gentoo org> AuthorDate: Sat Jan 2 15:26:17 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Jan 2 15:26:17 2016 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=26a5965e build: include -Wmisleading-indentation when available Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b09c3b0..f6fc827 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,8 @@ _WFLAGS := \ -Wdeclaration-after-statement \ -Wextra \ -Wsequence-point \ - -Wstrict-overflow + -Wstrict-overflow \ + -Wmisleading-indentation WFLAGS := -Wall -Wunused -Wimplicit -Wshadow -Wformat=2 \ -Wmissing-declarations -Wmissing-prototypes -Wwrite-strings \ -Wbad-function-cast -Wnested-externs -Wcomment -Winline \