aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2019-09-26 21:28:26 +0200
committerFabian Groffen <grobian@gentoo.org>2019-09-26 21:28:26 +0200
commite25a88e643669be1b04b89f760ca3ffe99ccb92d (patch)
treee4094d1b2dcb165898600ea892b9573fcd362745 /qmanifest.c
parentqpkg: drop weird location choice for binpkgs (diff)
downloadportage-utils-e25a88e643669be1b04b89f760ca3ffe99ccb92d.tar.gz
portage-utils-e25a88e643669be1b04b89f760ca3ffe99ccb92d.tar.bz2
portage-utils-e25a88e643669be1b04b89f760ca3ffe99ccb92d.zip
qmanifest: squash warning about extra tokens after ifdef directive
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'qmanifest.c')
-rw-r--r--qmanifest.c2
1 files changed, 1 insertions, 1 deletions
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