Skip to content

Commit 118e6fd

Browse files
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```).
1 parent d675982 commit 118e6fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/checkout/icase.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "path.h"
55

66
#ifdef GIT_WIN32
7-
# include <Windows.h>
7+
# include <windows.h>
88
#endif
99

1010
static git_repository *repo;

0 commit comments

Comments
 (0)