commit: e25a88e643669be1b04b89f760ca3ffe99ccb92d
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 26 19:28:26 2019 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> 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 <grobian <AT> 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