Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Lorensson <lateralusx.github@gmail.com>2019-05-10 14:20:52 +0300
committerGitHub <noreply@github.com>2019-05-10 14:20:52 +0300
commit4ca62c57796d70d3717f695a726c72a859968594 (patch)
tree846cb5427f86c015162154087fb5752c62aaf8a9
parent0689d47c59ebf68c25935287c2971f575201a799 (diff)
parenta6bac003893b0096d25eecd3ad0a71d9d7c09d80 (diff)
Merge pull request #20 from lateralusX/lateralusX/fix-32bit-build-error
Fix 32-bit Windows build error.
-rw-r--r--crypto/x509/x509_def.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/x509_def.c b/crypto/x509/x509_def.c
index cb0f5af0..7cfdd9c8 100644
--- a/crypto/x509/x509_def.c
+++ b/crypto/x509/x509_def.c
@@ -61,7 +61,7 @@
#ifdef OPENSSL_WINDOWS
/* OpenSSL defaults on Windows. */
-#if _WIN64
+#ifdef _WIN64
#define OPENSSLDIR "C:\\Program Files\\Common Files\\SSL"
#else
#define OPENSSLDIR "C:\\Program Files (x86)\\Common Files\\SSL"