From 8b7112191020f1e44386a6311e0cb62ee4cea2ef Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 29 Apr 2012 00:20:53 -0400 Subject: fix longstanding missing static in mq_notify (namespace pollution) --- src/mq/mq_notify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- cgit v1.2.1