Commit 4c2e6b1e871aaee3de35862da5dd0135fbcd5ec7

Edward Thomson 2015-03-17T23:35:52

Merge pull request #2985 from claudiuolteanu/patch-1 Lower case the include directive of windows header

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests/checkout/icase.c b/tests/checkout/icase.c
index 3a6ce20..2117380 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;