diff options
author | Eran Kornblau <erankor@gmail.com> | 2017-03-02 08:46:00 -0500 |
---|---|---|
committer | Eran Kornblau <erankor@gmail.com> | 2017-03-02 08:46:00 -0500 |
commit | 0759f088a532ec48170ca03d694cc103757a0f4c (patch) | |
tree | 9f6f3583651e72affa0d0204d7118c6dc956bb92 /src/event/modules/ngx_poll_module.c | |
parent | b4e9e377198da4f04d003bd85af5829b07b76470 (diff) | |
download | nginx-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.c | 4 |
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 */ |