From c52a182532f2b872837aca8182337ae31bbe957b Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 22 Jan 2021 13:02:50 +0100 Subject: [PATCH] listen_loop(): Split long line in two --- jcc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jcc.c b/jcc.c index 310fb1ee..c40c30dd 100644 --- a/jcc.c +++ b/jcc.c @@ -6205,7 +6205,8 @@ static void listen_loop(void) if (i <= 0) { - log_error(LOG_LEVEL_ERROR, "Graceful termination failed - still some live clients after 1 minute wait."); + log_error(LOG_LEVEL_ERROR, "Graceful termination failed " + "- still some live clients after 1 minute wait."); } } sweep(); -- 2.39.2