Commit 118e6fdc by Claudiu Olteanu

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```).
parent d675982a
...@@ -4,7 +4,7 @@ ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment