diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2017-04-27 16:57:18 +0300 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2017-04-27 16:57:18 +0300 |
| commit | b97145ae6c3fa65b59bff5cb08f72e554c558104 (patch) | |
| tree | 462ff92e79f13b42ba768620535679eaa17c9f73 /src/os/unix/ngx_process.c | |
| parent | d9700ec65f6de2d6a52fa4e14759d0a27974422a (diff) | |
| download | nginx-b97145ae6c3fa65b59bff5cb08f72e554c558104.tar.gz nginx-b97145ae6c3fa65b59bff5cb08f72e554c558104.tar.bz2 | |
Added missing "fall through" comments (ticket #1259).
Found by gcc7 (-Wimplicit-fallthrough).
Diffstat (limited to '')
| -rw-r--r-- | src/os/unix/ngx_process.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/os/unix/ngx_process.c b/src/os/unix/ngx_process.c index 2d37e21d4..016c16711 100644 --- a/src/os/unix/ngx_process.c +++ b/src/os/unix/ngx_process.c @@ -405,6 +405,7 @@ ngx_signal_handler(int signo) break; } ngx_debug_quit = 1; + /* fall through */ case ngx_signal_value(NGX_SHUTDOWN_SIGNAL): ngx_quit = 1; action = ", shutting down"; |
