From 058473dc8d4cf60f79aee18d473342b8a3c25fbe Mon Sep 17 00:00:00 2001 From: Etienne Dechamps Date: Sun, 22 Jun 2014 18:45:49 +0100 Subject: [PATCH] Fix Windows includes. 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ed25519/seed.c b/src/ed25519/seed.c index 25e51822..ca4089c1 100644 --- a/src/ed25519/seed.c +++ b/src/ed25519/seed.c @@ -3,8 +3,8 @@ #ifndef ED25519_NO_SEED #ifdef _WIN32 -#include -#include +#include +#include #else #include #endif -- 2.20.1