소스 검색

libpthread: Remove no longer valid attribute_unused

The variable is used since 04a676f3c8d2443499f27612f69ee88e12089e61.
Marcus Haehnel 2 달 전
부모
커밋
a53e19f932
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libpthread/linuxthreads/condvar.c

+ 1 - 1
libpthread/linuxthreads/condvar.c

@@ -273,7 +273,7 @@ int pthread_cond_broadcast(pthread_cond_t *cond)
 }
 libpthread_hidden_def(pthread_cond_broadcast)
 
-int pthread_condattr_init(pthread_condattr_t *attr attribute_unused)
+int pthread_condattr_init(pthread_condattr_t *attr)
 {
   memset (attr, '\0', sizeof (*attr));
   return 0;