diff options
author | Piotr Sikora <piotr@cloudflare.com> | 2014-07-08 03:03:13 -0700 |
---|---|---|
committer | Piotr Sikora <piotr@cloudflare.com> | 2014-07-08 03:03:13 -0700 |
commit | 7e7589e7462c89813458508085c640888a5887cb (patch) | |
tree | 6c89029597aa97ebcb9987710ed07dfc8b2b0550 /src/os/win32/ngx_service.c | |
parent | d224ed7eea5885b489ba99c3c1443e8409443854 (diff) | |
download | nginx-7e7589e7462c89813458508085c640888a5887cb.tar.gz nginx-7e7589e7462c89813458508085c640888a5887cb.zip |
Style: add whitespace between control statement and parentheses.
Signed-off-by: Piotr Sikora <piotr@cloudflare.com>
Diffstat (limited to 'src/os/win32/ngx_service.c')
-rw-r--r-- | src/os/win32/ngx_service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/win32/ngx_service.c b/src/os/win32/ngx_service.c index 5bed9a7d8..dc2c6e475 100644 --- a/src/os/win32/ngx_service.c +++ b/src/os/win32/ngx_service.c @@ -89,7 +89,7 @@ u_int service_handler(u_int control, u_int type, void *data, void *ctx) { /* primary thread */ - switch(control) { + switch (control) { case SERVICE_CONTROL_INTERROGATE: status = NGX_IOCP_INTERROGATE; |