From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1454921-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DD376158020 for <garchives@archives.gentoo.org>; Wed, 9 Nov 2022 02:25:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EE76E08FE; Wed, 9 Nov 2022 02:25:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 746ACE08FE for <gentoo-commits@lists.gentoo.org>; Wed, 9 Nov 2022 02:25:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 157AE33BE62 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Nov 2022 02:25:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45F43617 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Nov 2022 02:25:50 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1667960745.a38aa2108f996c834e8ca2f10fb151a111c782dc.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/ X-VCS-Repository: proj/portage X-VCS-Files: bin/install-qa-check.d/90gcc-warnings X-VCS-Directories: bin/install-qa-check.d/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a38aa2108f996c834e8ca2f10fb151a111c782dc X-VCS-Branch: master Date: Wed, 9 Nov 2022 02:25:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d8f13b53-2891-410c-8288-4eef179c90fb X-Archives-Hash: e09b413f53e4bab9e7077562ccb2d970 commit: a38aa2108f996c834e8ca2f10fb151a111c782dc Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Nov 9 02:12:32 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Nov 9 02:25:45 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a38aa210 install-qa-check.d/90gcc-warnings: add -Wint-conversion, -Wint-to-pointer-cast Signed-off-by: Sam James <sam <AT> gentoo.org> bin/install-qa-check.d/90gcc-warnings | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/install-qa-check.d/90gcc-warnings b/bin/install-qa-check.d/90gcc-warnings index cd12558ba..7a859eb88 100644 --- a/bin/install-qa-check.d/90gcc-warnings +++ b/bin/install-qa-check.d/90gcc-warnings @@ -54,6 +54,10 @@ gcc_warn_check() { # the address of ... will never be NULL and likes # (uses of function refs & string constants in conditionals) 'warning: .*\[-Waddress\]' + # warning: assignment/initialization to ... from ... makes integer from pointer without cast + 'warning: .*\[-Wint-conversion\]' + # warning: cast to ... from integer of different size (or smaller size) + 'warning: .*\[-Wint-to-pointer-cast\]' # outdated? 'warning: .*too few arguments for format' # format ... expects a matching ... argument