Fix aa5a8fe28: [MinGW] Wrong define tested (WIN32 vs _WIN32)

This commit is contained in:
glx22 2021-05-20 19:48:45 +02:00 committed by Loïc Guilloux
parent d485b50813
commit c2db408d5d
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ struct LocalTimeToStruct {
static inline std::tm ToTimeStruct(std::time_t time_since_epoch)
{
std::tm time = {};
#ifdef WIN32
#ifdef _WIN32
/* Windows has swapped the parameters around for localtime_s. */
localtime_s(&time, &time_since_epoch);
#else
@ -32,7 +32,7 @@ struct UTCTimeToStruct {
static inline std::tm ToTimeStruct(std::time_t time_since_epoch)
{
std::tm time = {};
#ifdef WIN32
#ifdef _WIN32
/* Windows has swapped the parameters around for gmtime_s. */
gmtime_s(&time, &time_since_epoch);
#else