From 88ecda3bbb6b5f753a706bbc9c67c2e79be42c9a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 24 Dec 2013 14:37:30 -0500 Subject: [PATCH] Fix a couple of "#ifdef WIN32" instances --- sample/dns-example.c | 2 +- sample/https-client.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.50.1