Include mingw32 64bit in the exclusion

This commit is contained in:
Linus Probert 2019-02-24 22:37:45 +01:00
parent 5f369da4e1
commit 3eeb4d05a9
1 changed files with 1 additions and 1 deletions

View File

@ -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);