diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-07-25 21:05:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-07-25 21:05:23 +0200 |
commit | 0e3095804499c2445b30bf7836a3ff34aae6fbc5 (patch) | |
tree | 417147c6e21dd6f571992ea8f235b38b5e45edf8 /wrapper.c | |
parent | Merge branch 'dk/t4002-syntaxo-fix' (diff) | |
parent | mingw: use lowercase includes for some Windows headers (diff) | |
download | git-0e3095804499c2445b30bf7836a3ff34aae6fbc5.tar.xz git-0e3095804499c2445b30bf7836a3ff34aae6fbc5.zip |
Merge branch 'mh/mingw-case-sensitive-build'
Names of MinGW header files are spelled in mixed case in some
source files, but the build host can be using case sensitive
filesystem with header files with their name spelled in all
lowercase.
* mh/mingw-case-sensitive-build:
mingw: use lowercase includes for some Windows headers
Diffstat (limited to 'wrapper.c')
-rw-r--r-- | wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ static intmax_t count_fsync_hardware_flush; #ifdef HAVE_RTLGENRANDOM /* This is required to get access to RtlGenRandom. */ #define SystemFunction036 NTAPI SystemFunction036 -#include <NTSecAPI.h> +#include <ntsecapi.h> #undef SystemFunction036 #endif |