Skip to content

Commit d0f538e

Browse files
MikeInneskripken
authored andcommitted
Fix case of windows.h include (#2372)
The capitalisation causes issues on case-sensitive file systems, for example when cross-compiling binaryen for windows.
1 parent 8e78dbc commit d0f538e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/wasm-reduce.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#ifndef NOMINMAX
4545
#define NOMINMAX
4646
#endif
47-
#include <Windows.h>
47+
#include <windows.h>
4848
// Create a string with last error message
4949
std::string GetLastErrorStdStr() {
5050
DWORD error = GetLastError();

0 commit comments

Comments
 (0)