diff options
| author | Ruslan Ermilov <ru@nginx.com> | 2017-03-16 19:01:05 +0300 |
|---|---|---|
| committer | Ruslan Ermilov <ru@nginx.com> | 2017-03-16 19:01:05 +0300 |
| commit | b1682ecae4ccf3eef377271ae44c04490c5213eb (patch) | |
| tree | 414a210ae974a7b4a7b4f92d51477f873461c229 /src/os/unix/ngx_process.c | |
| parent | c265b11770b3254a12f7c43792ade710cc35f18a (diff) | |
| download | nginx-b1682ecae4ccf3eef377271ae44c04490c5213eb.tar.gz nginx-b1682ecae4ccf3eef377271ae44c04490c5213eb.tar.bz2 | |
Added missing "static" specifier found by gcc -Wtraditional.
This has somehow escaped from fbdaad9b0e7b.
Diffstat (limited to '')
| -rw-r--r-- | src/os/unix/ngx_process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_process.c b/src/os/unix/ngx_process.c index 24a63fbf5..2d37e21d4 100644 --- a/src/os/unix/ngx_process.c +++ b/src/os/unix/ngx_process.c @@ -306,7 +306,7 @@ ngx_init_signals(ngx_log_t *log) } -void +static void ngx_signal_handler(int signo) { char *action; |
