summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Olteanu <olteanu.claudiu@ymail.com>2015-03-16 23:08:16 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2015-03-21 21:12:11 +0100
commitdcf6c0c46a4648ca8ca6d2597cac004f353c08d8 (patch)
tree5c543fbba947a7c4fc1757f009bf2e0ae915a238
parent1dd5e28ec1fe5dc1d58116edb88148fcde963e83 (diff)
downloadlibgit2-dcf6c0c46a4648ca8ca6d2597cac004f353c08d8.tar.gz
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```).
-rw-r--r--tests/checkout/icase.c2
1 files changed, 1 insertions, 1 deletions
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 <Windows.h>
+# include <windows.h>
#endif
static git_repository *repo;