Fixed preprocessor command for mingw

This commit is contained in:
Linus Probert 2019-02-24 22:34:20 +01:00
parent c98e6e6d05
commit 5f369da4e1
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__
struct tm *tm;
tm = gmtime(&now);
time_t lastMonday = get_last_monday(now, tm);