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 5853015800F for ; Sun, 29 Jan 2023 03:57:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A90DE08F0; Sun, 29 Jan 2023 03:57:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4F768E08F0 for ; Sun, 29 Jan 2023 03:57:52 +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 70F15340E7A for ; Sun, 29 Jan 2023 03:57:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC2057D0 for ; Sun, 29 Jan 2023 03:57: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: <1674964634.5dd019205cba747802b98c5283b8accf0ff47eda.sam@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: misc/install-xattr/ X-VCS-Repository: proj/elfix X-VCS-Files: misc/install-xattr/install-xattr.c X-VCS-Directories: misc/install-xattr/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5dd019205cba747802b98c5283b8accf0ff47eda X-VCS-Branch: master Date: Sun, 29 Jan 2023 03:57: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: d89ca8ea-b96d-4928-be06-9950923e2ccb X-Archives-Hash: b45ad27a6103cee1e8c99b24329abe55 commit: 5dd019205cba747802b98c5283b8accf0ff47eda Author: Sam James gentoo org> AuthorDate: Sun Jan 29 03:57:14 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 29 03:57:14 2023 +0000 URL: https://gitweb.gentoo.org/proj/elfix.git/commit/?id=5dd01920 install-xattr: IWYU fixes Signed-off-by: Sam James gentoo.org> misc/install-xattr/install-xattr.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/misc/install-xattr/install-xattr.c b/misc/install-xattr/install-xattr.c index 33b9fe1..1f53273 100644 --- a/misc/install-xattr/install-xattr.c +++ b/misc/install-xattr/install-xattr.c @@ -20,19 +20,19 @@ * along with this program. If not, see . */ -#include -#include -#include +#include #include #include -#include #include #include -#include +#include +#include +#include #include #include #include #include +#include static char * xstrdup(const char *s) @@ -301,7 +301,7 @@ main(int argc, char* argv[]) while (1) { int option_index; int c = getopt_long(argc, argv_copy, "dt:g:m:o:S:Zb", long_options, &option_index); - + if (c == -1) break;