瀏覽代碼

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