From e82110423735ff3cb7d33c7238628e87b316ab7b Mon Sep 17 00:00:00 2001 From: xloem <0xloem@gmail.com> Date: Thu, 8 Apr 2021 08:16:23 -0400 Subject: [PATCH] fix(crypto): update case of windows.h (#1560) When building for windows on a case-sensitive system, mingw always comes with a lower-case windows.h --- crypto/memzero.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/memzero.c b/crypto/memzero.c index 32aa140f4..1c5ea77a6 100644 --- a/crypto/memzero.c +++ b/crypto/memzero.c @@ -4,7 +4,7 @@ #include #ifdef _WIN32 -#include +#include #endif #ifdef __unix__