From 8449f750e62cd229026e9df3bd023ec7e073a7d4 Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Thu, 27 Apr 2017 16:57:18 +0300 Subject: Added missing "fall through" comments (ticket #1259). Found by gcc7 (-Wimplicit-fallthrough). --- src/os/unix/ngx_process.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/os/unix/ngx_process.c') 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"; -- cgit