From: Rich Felker Date: Sun, 29 Apr 2012 04:20:53 +0000 (-0400) Subject: fix longstanding missing static in mq_notify (namespace pollution) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=8b7112191020f1e44386a6311e0cb62ee4cea2ef;p=musl fix longstanding missing static in mq_notify (namespace pollution) --- diff --git a/src/mq/mq_notify.c b/src/mq/mq_notify.c index 3f8661eb..221591c7 100644 --- a/src/mq/mq_notify.c +++ b/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];