Преглед изворни кода

Tests: Fix thread_wrapper on MinGW

Julius Pfrommer пре 5 година
родитељ
комит
1f686ae360
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tests/testing-plugins/thread_wrapper.h

+ 1 - 1
tests/testing-plugins/thread_wrapper.h

@@ -21,7 +21,7 @@
 #define THREAD_JOIN(handle) WaitForSingleObject(handle, INFINITE)
 
 
-#define THREAD_CALLBACK(name) DWORD WINAPI name( LPVOID lpParam )
+#define THREAD_CALLBACK(name) static DWORD WINAPI name( LPVOID lpParam )
 
 #endif