Skip to content

Commit 0e30958

Browse files
committed
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
2 parents d4ce185 + 4a53d0d commit 0e30958

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compat/win32/trace2_win32_process_info.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#include "../../repository.h"
44
#include "../../trace2.h"
55
#include "lazyload.h"
6-
#include <Psapi.h>
7-
#include <tlHelp32.h>
6+
#include <psapi.h>
7+
#include <tlhelp32.h>
88

99
/*
1010
* An arbitrarily chosen value to limit the size of the ancestor

wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ static intmax_t count_fsync_hardware_flush;
1616
#ifdef HAVE_RTLGENRANDOM
1717
/* This is required to get access to RtlGenRandom. */
1818
#define SystemFunction036 NTAPI SystemFunction036
19-
#include <NTSecAPI.h>
19+
#include <ntsecapi.h>
2020
#undef SystemFunction036
2121
#endif
2222

0 commit comments

Comments
 (0)