소스 검색

Merge topic 'check-pthreads-static'

b4f17e5b44 FindThreads: Fix pthreads detection with -Wmissing-prototypes

Acked-by: Kitware Robot <[email protected]>
Acked-by: buildbot <[email protected]>
Merge-request: !9449
Brad King 1 년 전
부모
커밋
9eb4ae4f64
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Modules/CheckForPthreads.c

+ 1 - 1
Modules/CheckForPthreads.c

@@ -1,6 +1,6 @@
 #include <pthread.h>
 
-void* start_routine(void* args)
+static void* start_routine(void* args)
 {
   return args;
 }