From 6ae21e36dfb447cf33e9338fb8d13784bd8ef4c4 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 26 May 2022 16:09:31 +0200 Subject: [PATCH] handle_established_connection(): Improve an error message slightly --- jcc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jcc.c b/jcc.c index 02f6f25e..61fc1ac9 100644 --- a/jcc.c +++ b/jcc.c @@ -4167,8 +4167,8 @@ static void handle_established_connection(struct client_state *csp) */ if (chunk_offset >= len) { - log_error(LOG_LEVEL_CONNECT, - "Reducing chunk offset from %lu to %lu after flushing %ld bytes", + log_error(LOG_LEVEL_CONNECT, "Reducing the chunk offset " + "from %lu to %lu after flushing %ld bytes.", chunk_offset, (chunk_offset - (unsigned)len), len); chunk_offset = chunk_offset - (unsigned)len; } -- 2.39.2