aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-05-26 08:26:20 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-26 08:28:38 +0200
commitd23cc224e6d25eec99a988f4db18c040bde3e97b (patch)
tree5ea8c47ef7862a636c0cc2b7bd98f9d0c5ffdb05 /lib/url.c
parentad829b21ae9e0f11a821a0a98a1aaab161efa9a2 (diff)
cleanup: use a single space after equals sign in assignments
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 9c6712c0e..1913804c0 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -3210,7 +3210,7 @@ static CURLcode resolve_server(struct Curl_easy *data,
else if(!hostaddr) {
failf(data, "Couldn't resolve host '%s'", connhost->dispname);
- result = CURLE_COULDNT_RESOLVE_HOST;
+ result = CURLE_COULDNT_RESOLVE_HOST;
/* don't return yet, we need to clean up the timeout first */
}
}