add a newline before dying in handle_curl_option_return_code

This commit is contained in:
Ahmet Oeztuerk 2026-02-19 14:29:31 +01:00
parent 687fe995d5
commit d039da1eac

View file

@ -666,7 +666,7 @@ check_curl_configure_curl(const check_curl_static_curl_config config,
void handle_curl_option_return_code(CURLcode res, const char *option) {
if (res != CURLE_OK) {
die(STATE_CRITICAL, _("Error while setting cURL option '%s': cURL returned %d - %s"),
die(STATE_CRITICAL, _("Error while setting cURL option '%s': cURL returned %d - %s\n"),
option, res, curl_easy_strerror(res));
}
}