From: Nick Mathewson Date: Tue, 24 Dec 2013 19:37:30 +0000 (-0500) Subject: Fix a couple of "#ifdef WIN32" instances X-Git-Tag: release-2.1.4-alpha~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88ecda3bbb6b5f753a706bbc9c67c2e79be42c9a;p=libevent Fix a couple of "#ifdef WIN32" instances --- diff --git a/sample/dns-example.c b/sample/dns-example.c index c4fb64a5..15e48ce4 100644 --- a/sample/dns-example.c +++ b/sample/dns-example.c @@ -171,7 +171,7 @@ main(int c, char **v) { ++idx; } -#ifdef WIN32 +#ifdef _WIN32 { WSADATA WSAData; WSAStartup(0x101, &WSAData); diff --git a/sample/https-client.c b/sample/https-client.c index 81abc743..dfb77c66 100644 --- a/sample/https-client.c +++ b/sample/https-client.c @@ -16,7 +16,7 @@ #include #include -#ifdef WIN32 +#ifdef _WIN32 #include #include #else