From b5c5241dc3026d306313e8b2984737ae79a3ed62 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Mon, 11 Aug 2025 18:18:20 +0200 Subject: [PATCH] fix string continuation --- lib/hostip.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/hostip.c b/lib/hostip.c index ad50ac3ddd..0d4ae63b93 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -1063,11 +1063,10 @@ CURLcode Curl_resolv_timeout(struct Curl_easy *data, *entry = NULL; #ifdef USE_ALARM_TIMEOUT - CURL_TRC_DNS(data, "starting resolve of %s:%d, timeout of %" - FMT_TIMEDIFF_T "ms", - hostname, port, timeoutms); + CURL_TRC_DNS(data, "starting resolve of %s:%d, timeout of %" FMT_TIMEDIFF_T + "ms", hostname, port, timeoutms); #else - CURL_TRC_DNS(data, "starting resolve of %s:%d, no ALARM available, + CURL_TRC_DNS(data, "starting resolve of %s:%d, no ALARM available, " "timeout of %" FMT_TIMEDIFF_T "ms will not apply", hostname, port, timeoutms); #endif