From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 5EC2F158020 for ; Tue, 8 Nov 2022 23:51:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9A58E09FE; Tue, 8 Nov 2022 23:51:50 +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 8F463E09FE for ; Tue, 8 Nov 2022 23:51:50 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72BDA340A9F for ; Tue, 8 Nov 2022 23:51:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A8BB6DF for ; Tue, 8 Nov 2022 23:51:48 +0000 (UTC) From: "Sam James" 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" Message-ID: <1667951495.1619bda983a731961b17504e2a48e44d4849d2cc.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: 1619bda983a731961b17504e2a48e44d4849d2cc X-VCS-Branch: master Date: Tue, 8 Nov 2022 23:51:48 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 34a913fe-60f1-47eb-ab07-f0cdffbb04c3 X-Archives-Hash: 21b474f39d9d7ed2d77255b6c181a98a commit: 1619bda983a731961b17504e2a48e44d4849d2cc Author: Sam James gentoo org> AuthorDate: Tue Nov 8 23:51:35 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 8 23:51:35 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=1619bda9 install-qa-check.d/90gcc-warnings: improve -Warray-bounds comment Signed-off-by: Sam James gentoo.org> bin/install-qa-check.d/90gcc-warnings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-qa-check.d/90gcc-warnings b/bin/install-qa-check.d/90gcc-warnings index 579cb4135..f5dae8a76 100644 --- a/bin/install-qa-check.d/90gcc-warnings +++ b/bin/install-qa-check.d/90gcc-warnings @@ -31,7 +31,7 @@ gcc_warn_check() { 'warning: .*mathematical meaning*\[-Wparentheses\]' # null argument where non-null required 'warning: .*\[-Wnonnull\]' - # array subscript is above/below/outside array bounds + # array subscript is above/below/outside array bounds (FORTIFY_SOURCE) 'warning: .*\[-Warray-bounds\]' # attempt to free a non-heap object 'warning: .*\[-Wfree-nonheap-object\]'