From 118e6fdc8f4f484aa27e16d2e351145aae77bca2 Mon Sep 17 00:00:00 2001 From: Claudiu Olteanu Date: Mon, 16 Mar 2015 23:08:16 +0200 Subject: [PATCH] Lower case the include directive of windows header Since the Linux platform has a case sensitive file system, the header name should be lower case for cross compiling purposes. (On Linux, the mingw header is called ```windows.h```). --- tests/checkout/icase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checkout/icase.c b/tests/checkout/icase.c index 3a6ce2078..211738070 100644 --- a/tests/checkout/icase.c +++ b/tests/checkout/icase.c @@ -4,7 +4,7 @@ #include "path.h" #ifdef GIT_WIN32 -# include +# include #endif static git_repository *repo;