浏览代码

fix call to __pthread_tsd_run_dtors with too many arguments

commit a6054e3c94aa0491d7366e4b05ae0d73f661bfe2 removed the argument,
making it a constraint violation to pass one. caught by cparser/firm;
other compilers seem to ignore it.
Rich Felker 6 年之前
父节点
当前提交
ce32db4715
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/time/timer_create.c

+ 1 - 1
src/time/timer_create.c

@@ -22,7 +22,7 @@ weak_alias(dummy_0, __pthread_tsd_run_dtors);
 static void cleanup_fromsig(void *p)
 {
 	pthread_t self = __pthread_self();
-	__pthread_tsd_run_dtors(self);
+	__pthread_tsd_run_dtors();
 	self->cancel = 0;
 	self->cancelbuf = 0;
 	self->canceldisable = 0;