From: Ruslan Ermilov Date: Thu, 16 Mar 2017 16:01:05 +0000 (+0300) Subject: Added missing "static" specifier found by gcc -Wtraditional. X-Git-Tag: release-1.11.11~5 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=b1682ecae4ccf3eef377271ae44c04490c5213eb;p=nginx.git Added missing "static" specifier found by gcc -Wtraditional. This has somehow escaped from fbdaad9b0e7b. --- 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;