Forráskód Böngészése

Tests: Fix thread_wrapper on MinGW

Julius Pfrommer 5 éve
szülő
commit
1f686ae360
1 módosított fájl, 1 hozzáadás és 1 törlés
  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