cleanup: added space around ternary expressions

Closes #14990
This commit is contained in:
Gabriel Marin 2024-09-23 00:32:44 +03:00 committed by Daniel Stenberg
parent b7c9166c4c
commit b70e8f4b9b
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
8 changed files with 17 additions and 17 deletions

View file

@ -1837,7 +1837,7 @@ CURLcode Curl_http_target(struct Curl_easy *data,
curl_url_cleanup(h);
/* target or URL */
result = Curl_dyn_add(r, data->set.str[STRING_TARGET]?
result = Curl_dyn_add(r, data->set.str[STRING_TARGET] ?
data->set.str[STRING_TARGET] : url);
free(url);
if(result)