From 60d98605cae19554aad11f2569b476454fab7f32 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 19 Jan 2016 09:04:52 +0100 Subject: [PATCH] reorder comments --- sapi/cgi/cgi_main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 48307f3b8a..4e092cb0ea 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -2121,7 +2121,8 @@ consult the installation file that came with this distribution, or visit \n\ SetConsoleCtrlHandler(fastcgi_cleanup, TRUE); - SetEnvironmentVariable("PHP_FCGI_CHILDREN", NULL); /* kids will inherit the env, don't let them spawn */ + /* kids will inherit the env, don't let them spawn */ + SetEnvironmentVariable("PHP_FCGI_CHILDREN", NULL); GetModuleFileName(NULL, my_name, MAX_PATH); cmd_line = my_name; @@ -2198,7 +2199,8 @@ consult the installation file that came with this distribution, or visit \n\ } snprintf(kid_buf, 16, "%d", children); - SetEnvironmentVariable("PHP_FCGI_CHILDREN", kid_buf); /* restore my env */ + /* restore my env */ + SetEnvironmentVariable("PHP_FCGI_CHILDREN", kid_buf); goto parent_out; } else { -- 2.40.0