From 4a53d0d0bc1c04f012773d23e918ba45e96ddefb Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Mon, 5 Jun 2023 06:19:34 +0900 Subject: mingw: use lowercase includes for some Windows headers When cross-compiling with the mingw toolchain on a system with a case sensitive filesystem, the mixed case (which is technically correct as per the contents of MS Visual C++) doesn't work (the corresponding mingw headers are all lowercase for some reason). Signed-off-by: Mike Hommey Signed-off-by: Junio C Hamano --- compat/win32/trace2_win32_process_info.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compat') diff --git a/compat/win32/trace2_win32_process_info.c b/compat/win32/trace2_win32_process_info.c index a4e33768f4..438af8f818 100644 --- a/compat/win32/trace2_win32_process_info.c +++ b/compat/win32/trace2_win32_process_info.c @@ -3,8 +3,8 @@ #include "../../repository.h" #include "../../trace2.h" #include "lazyload.h" -#include -#include +#include +#include /* * An arbitrarily chosen value to limit the size of the ancestor -- cgit v1.3-5-g9baa