aboutsummaryrefslogtreecommitdiff
path: root/src/event/modules/ngx_poll_module.c
diff options
context:
space:
mode:
authorEran Kornblau <erankor@gmail.com>2017-03-02 08:46:00 -0500
committerEran Kornblau <erankor@gmail.com>2017-03-02 08:46:00 -0500
commit0759f088a532ec48170ca03d694cc103757a0f4c (patch)
tree9f6f3583651e72affa0d0204d7118c6dc956bb92 /src/event/modules/ngx_poll_module.c
parentb4e9e377198da4f04d003bd85af5829b07b76470 (diff)
downloadnginx-0759f088a532ec48170ca03d694cc103757a0f4c.tar.gz
nginx-0759f088a532ec48170ca03d694cc103757a0f4c.zip
Added missing static specifiers.
Diffstat (limited to 'src/event/modules/ngx_poll_module.c')
-rw-r--r--src/event/modules/ngx_poll_module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/modules/ngx_poll_module.c b/src/event/modules/ngx_poll_module.c
index a2a7079d6..4e03dabf2 100644
--- a/src/event/modules/ngx_poll_module.c
+++ b/src/event/modules/ngx_poll_module.c
@@ -25,9 +25,9 @@ static struct pollfd *event_list;
static ngx_uint_t nevents;
-static ngx_str_t poll_name = ngx_string("poll");
+static ngx_str_t poll_name = ngx_string("poll");
-ngx_event_module_t ngx_poll_module_ctx = {
+static ngx_event_module_t ngx_poll_module_ctx = {
&poll_name,
NULL, /* create configuration */
ngx_poll_init_conf, /* init configuration */