소스 검색

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