From: Marc Hoersken Date: Sun, 5 Apr 2020 16:25:03 +0000 (+0200) Subject: lib670: use the same Win32 API check as all other lib tests X-Git-Tag: curl-7_70_0~133 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f50bc76c99bb6fd8be257de4c0544837d8f997b6;p=thirdparty%2Fcurl.git lib670: use the same Win32 API check as all other lib tests --- diff --git a/tests/libtest/lib670.c b/tests/libtest/lib670.c index 2e60407145..aecb1c01f2 100644 --- a/tests/libtest/lib670.c +++ b/tests/libtest/lib670.c @@ -210,7 +210,7 @@ int test(char *URL) mres = curl_multi_fdset(multi, &fdread, &fdwrite, &fdexcept, &maxfd); if(mres) break; -#ifdef _WIN32 +#if defined(WIN32) || defined(_WIN32) if(maxfd == -1) Sleep(100); else