From 837652cd3b1273e4d795ce019c4df7f55baa7c42 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Thu, 9 Apr 2015 18:59:43 +0000 Subject: [PATCH] Followon to r1671396: add misiing newline in 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/generators/mod_status.c b/modules/generators/mod_status.c index 78a797d538..9bd4e8aa04 100644 --- a/modules/generators/mod_status.c +++ b/modules/generators/mod_status.c @@ -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) -- 2.40.0