summaryrefslogtreecommitdiff
path: root/libs/libcurl/src/timediff.c
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libcurl/src/timediff.c')
-rw-r--r--libs/libcurl/src/timediff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libcurl/src/timediff.c b/libs/libcurl/src/timediff.c
index c044b96680..a98d5782c1 100644
--- a/libs/libcurl/src/timediff.c
+++ b/libs/libcurl/src/timediff.c
@@ -53,7 +53,7 @@ struct timeval *curlx_mstotv(struct timeval *tv, timediff_t ms)
#endif
tv->tv_sec = (time_t)tv_sec;
tv->tv_usec = (suseconds_t)tv_usec;
-#elif defined(WIN32) /* maybe also others in the future */
+#elif defined(_WIN32) /* maybe also others in the future */
#if TIMEDIFF_T_MAX > LONG_MAX
/* tv_sec overflow check on Windows there we know it is long */
if(tv_sec > LONG_MAX)