]> granicus.if.org Git - apache/commitdiff
Followon to r1671396: add misiing newline in
authorRainer Jung <rjung@apache.org>
Thu, 9 Apr 2015 18:59:43 +0000 (18:59 +0000)
committerRainer Jung <rjung@apache.org>
Thu, 9 Apr 2015 18:59:43 +0000 (18:59 +0000)
new server-status output.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1672453 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_status.c

index 78a797d538565fac7a6eef0ca9c64c7ce8188c48..9bd4e8aa04e84c2965b6bae9964e1864d64606a3 100644 (file)
@@ -464,7 +464,7 @@ static int status_handler(request_rec *r)
 
 #ifdef HAVE_TIMES
             /* Allow for OS/2 not having CPU stats */
-            ap_rprintf(r, "CPUUser: %g\nCPUSystem: %g\nCPUChildrenUser: %g\nCPUChildrenSystem: %g",
+            ap_rprintf(r, "CPUUser: %g\nCPUSystem: %g\nCPUChildrenUser: %g\nCPUChildrenSystem: %g\n",
                        tu / tick, ts / tick, tcu / tick, tcs / tick);
 
             if (ts || tu || tcu || tcs)