diff options
author | Claudiu Olteanu <olteanu.claudiu@ymail.com> | 2015-03-16 23:08:16 +0200 |
---|---|---|
committer | Carlos MartÃn Nieto <cmn@dwim.me> | 2015-03-21 21:12:11 +0100 |
commit | dcf6c0c46a4648ca8ca6d2597cac004f353c08d8 (patch) | |
tree | 5c543fbba947a7c4fc1757f009bf2e0ae915a238 /tests/checkout/icase.c | |
parent | 1dd5e28ec1fe5dc1d58116edb88148fcde963e83 (diff) | |
download | libgit2-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```).
Diffstat (limited to 'tests/checkout/icase.c')
-rw-r--r-- | tests/checkout/icase.c | 2 |
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; |