diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2016-03-14 19:23:23 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2016-03-14 19:23:23 +0300 |
commit | db72c6be20138f9f87f53d935b3a45baca334902 (patch) | |
tree | 8d904fe08cc8e4b076070f33a1fbfec68076972b /src/core/ngx_module.c | |
parent | 573ec98d2425bf5edc22d8e5e7edd17c6391d9b1 (diff) | |
download | nginx-db72c6be20138f9f87f53d935b3a45baca334902.tar.gz nginx-db72c6be20138f9f87f53d935b3a45baca334902.zip |
Fixed compilation with -Wmissing-prototypes.
Diffstat (limited to 'src/core/ngx_module.c')
-rw-r--r-- | src/core/ngx_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_module.c b/src/core/ngx_module.c index 2d81b3893..3e3c50683 100644 --- a/src/core/ngx_module.c +++ b/src/core/ngx_module.c @@ -23,7 +23,7 @@ static ngx_uint_t ngx_modules_n; ngx_int_t -ngx_preinit_modules() +ngx_preinit_modules(void) { ngx_uint_t i; |