From 3eeb4d05a92fdd596116100a478ff9fde813639d Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Sun, 24 Feb 2019 22:37:45 +0100 Subject: [PATCH] Include mingw32 64bit in the exclusion --- src/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/time.c b/src/time.c index 9effca4..41249f0 100644 --- a/src/time.c +++ b/src/time.c @@ -51,7 +51,7 @@ time_get_weekly_seed(void) { time_t now = time(NULL); -#ifdef __MINGW32__ +#ifdef __MINGW32__ || __MINGW64__ struct tm *tm; tm = gmtime(&now); time_t lastMonday = get_last_monday(now, tm);