fix longstanding missing static in mq_notify (namespace pollution)
authorRich Felker <dalias@aerifal.cx>
Sun, 29 Apr 2012 04:20:53 +0000 (00:20 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 29 Apr 2012 04:20:53 +0000 (00:20 -0400)
src/mq/mq_notify.c

index 3f8661ebbf1d13f7f055175d2ef336f9fa5b90fb..221591c73ad50be87ee1174e5aea5506809f7a17 100644 (file)
@@ -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];