From 8a86be605acd6ebe684650b5e860776145200d2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= Date: Tue, 5 Apr 2016 12:00:56 -0400 Subject: [PATCH] use lower-case "windows.h" Capitalized Windows.h breaks on MinGW. "windows.h" is the proper include. --- src/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread.c b/src/thread.c index 0c4edea..412261f 100644 --- a/src/thread.c +++ b/src/thread.c @@ -1,6 +1,6 @@ #include "thread.h" #if defined(_WIN32) -#include +#include #endif int argon2_thread_create(argon2_thread_handle_t *handle,