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```).
This commit is contained in:
Claudiu Olteanu 2015-03-16 23:08:16 +02:00
parent d675982a15
commit 118e6fdc8f

View File

@ -4,7 +4,7 @@
#include "path.h" #include "path.h"
#ifdef GIT_WIN32 #ifdef GIT_WIN32
# include <Windows.h> # include <windows.h>
#endif #endif
static git_repository *repo; static git_repository *repo;