Ver código fonte

fix longstanding missing static in mq_notify (namespace pollution)

Rich Felker 13 anos atrás
pai
commit
8b71121910
1 arquivos alterados com 1 adições e 1 exclusões
  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];