summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2015-03-17 23:35:52 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2015-03-17 23:35:52 -0400
commit4c2e6b1e871aaee3de35862da5dd0135fbcd5ec7 (patch)
tree8cda376a5a36e939be6d9f1fff9441655ce4eecd
parentfa8a38a490a6285593c6c18357426acaca4b5614 (diff)
parent118e6fdc8f4f484aa27e16d2e351145aae77bca2 (diff)
downloadlibgit2-4c2e6b1e871aaee3de35862da5dd0135fbcd5ec7.tar.gz
Merge pull request #2985 from claudiuolteanu/patch-1
Lower case the include directive of windows header
-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;