Skip to content

Commit 9d5e87e

Browse files
MartinEesmaadariusz-f
authored andcommitted
Fix cross compilation of Windows on Linux
This will solve the problem by changing from Windows.h to windows.h for smallcase first letter.
1 parent e137e13 commit 9d5e87e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src_base/xeve_thread_pool.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include <stdlib.h>
3333
#include "xeve_thread_pool.h"
3434
#if defined(WIN32) || defined(WIN64)
35-
#include <Windows.h>
35+
#include <windows.h>
3636
#include <process.h>
3737
#else
3838
#include <pthread.h>

0 commit comments

Comments
 (0)