Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Olteanu <olteanu.claudiu@ymail.com>2015-03-17 00:08:16 +0300
committerClaudiu Olteanu <olteanu.claudiu@ymail.com>2015-03-17 00:08:16 +0300
commit118e6fdc8f4f484aa27e16d2e351145aae77bca2 (patch)
tree1df1958f9f254b3d453c67301cef6d1f5b9c81aa /tests/checkout
parentd675982a15388d8c413acda139b4662062cf3286 (diff)
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```).
Diffstat (limited to 'tests/checkout')
-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;