From 5a1840a3abf02eafab4133dd5f2db70d6d0718c5 Mon Sep 17 00:00:00 2001 From: Ahmet Oeztuerk Date: Tue, 12 May 2026 14:37:57 +0200 Subject: [PATCH] check_curl clang-format --- plugins/check_curl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/check_curl.c b/plugins/check_curl.c index d90de5ab..377fa0be 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c @@ -273,8 +273,8 @@ mp_subcheck check_http(const check_curl_config config, check_curl_working_state /* Custom handling for timeouts */ if (res == CURLE_OPERATION_TIMEDOUT) { - xasprintf(&sc_curl.output, _("cURL returned %d - %s"), - res, errbuf[0] ? errbuf : curl_easy_strerror(res)); + xasprintf(&sc_curl.output, _("cURL returned %d - %s"), res, + errbuf[0] ? errbuf : curl_easy_strerror(res)); sc_curl = mp_set_subcheck_state(sc_curl, config.on_timeout_result_state); mp_add_subcheck_to_subcheck(&sc_result, sc_curl); return sc_result;