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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1F76D138334 for ; Thu, 26 Sep 2019 19:29:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60864E08C3; Thu, 26 Sep 2019 19:29:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 389CAE08C3 for ; Thu, 26 Sep 2019 19:29:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22A4934B5F7 for ; Thu, 26 Sep 2019 19:29:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A38BD7F9 for ; Thu, 26 Sep 2019 19:28:58 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1569526106.e25a88e643669be1b04b89f760ca3ffe99ccb92d.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: qmanifest.c X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: e25a88e643669be1b04b89f760ca3ffe99ccb92d X-VCS-Branch: master Date: Thu, 26 Sep 2019 19:28:58 +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: 4ab4659f-5174-4b88-92fd-683b9c810344 X-Archives-Hash: 5afd1f4e94ca2a71b3befd1de96f7994 commit: e25a88e643669be1b04b89f760ca3ffe99ccb92d Author: Fabian Groffen gentoo org> AuthorDate: Thu Sep 26 19:28:26 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Sep 26 19:28:26 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=e25a88e6 qmanifest: squash warning about extra tokens after ifdef directive Signed-off-by: Fabian Groffen gentoo.org> qmanifest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmanifest.c b/qmanifest.c index 10cd39c..fee0151 100644 --- a/qmanifest.c +++ b/qmanifest.c @@ -91,7 +91,7 @@ char verify_manifest(const char *dir, const char *manifest, verify_msg **msgs); static inline void update_times(struct timeval *tv, struct stat *s) { -#ifdef __MACH__ && defined __APPLE__ +#if defined (__MACH__) && defined __APPLE__ # define st_mtim st_mtimespec # define st_atim st_atimespec #endif