Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage-utils:master commit in: /
Date: Thu, 26 Sep 2019 19:29:02
Message-Id: 1569526106.e25a88e643669be1b04b89f760ca3ffe99ccb92d.grobian@gentoo
1 commit: e25a88e643669be1b04b89f760ca3ffe99ccb92d
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 26 19:28:26 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 26 19:28:26 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=e25a88e6
7
8 qmanifest: squash warning about extra tokens after ifdef directive
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11
12 qmanifest.c | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/qmanifest.c b/qmanifest.c
16 index 10cd39c..fee0151 100644
17 --- a/qmanifest.c
18 +++ b/qmanifest.c
19 @@ -91,7 +91,7 @@ char verify_manifest(const char *dir, const char *manifest, verify_msg **msgs);
20 static inline void
21 update_times(struct timeval *tv, struct stat *s)
22 {
23 -#ifdef __MACH__ && defined __APPLE__
24 +#if defined (__MACH__) && defined __APPLE__
25 # define st_mtim st_mtimespec
26 # define st_atim st_atimespec
27 #endif