Fix Windows includes.
authorEtienne Dechamps <etienne@edechamps.fr>
Sun, 22 Jun 2014 17:45:49 +0000 (18:45 +0100)
committerEtienne Dechamps <etienne@edechamps.fr>
Sun, 22 Jun 2014 17:45:49 +0000 (18:45 +0100)
These Windows include lines are capitalized, which causes the build to fail
when cross-compiling from Linux to Windows using MinGW as the MinGW headers
are entirely lower case.

src/ed25519/seed.c

index 25e5182..ca4089c 100644 (file)
@@ -3,8 +3,8 @@
 #ifndef ED25519_NO_SEED
 
 #ifdef _WIN32
-#include <Windows.h>
-#include <Wincrypt.h>
+#include <windows.h>
+#include <wincrypt.h>
 #else
 #include <stdio.h>
 #endif