Browse Source

fix longstanding missing static in mq_notify (namespace pollution)

Rich Felker 13 năm trước cách đây
mục cha
commit
8b71121910
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/mq/mq_notify.c

+ 1 - 1
src/mq/mq_notify.c

@@ -12,7 +12,7 @@ struct args {
 	const struct sigevent *sev;
 };
 
-void *start(void *p)
+static void *start(void *p)
 {
 	struct args *args = p;
 	char buf[32];