Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/os/unix
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2017-04-27 16:57:18 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2017-04-27 16:57:18 +0300
commit8449f750e62cd229026e9df3bd023ec7e073a7d4 (patch)
tree16bf5286016590ce10ee8d53ee65c149f266c8ee /src/os/unix
parent8ae2bc932013b838b925cdbb0cae59f743e699c7 (diff)
Added missing "fall through" comments (ticket #1259).
Found by gcc7 (-Wimplicit-fallthrough).
Diffstat (limited to 'src/os/unix')
-rw-r--r--src/os/unix/ngx_process.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/os/unix/ngx_process.c b/src/os/unix/ngx_process.c
index dd50b5ca1..993c032ae 100644
--- a/src/os/unix/ngx_process.c
+++ b/src/os/unix/ngx_process.c
@@ -413,6 +413,7 @@ ngx_signal_handler(int signo, siginfo_t *siginfo, void *ucontext)
break;
}
ngx_debug_quit = 1;
+ /* fall through */
case ngx_signal_value(NGX_SHUTDOWN_SIGNAL):
ngx_quit = 1;
action = ", shutting down";