Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
http: remove extra newline in error message
[gitweb.git]
/
http.c
diff --git
a/http.c
b/http.c
index b2ae8de16db3abe2cad27249ae767f421aa6bb24..74197519b16994bc8bd67a1de00da476cc5df9e1 100644
(file)
--- a/
http.c
+++ b/
http.c
@@
-903,7
+903,7
@@
int http_error(const char *url, int ret)
{
/* http_request has already handled HTTP_START_FAILED. */
if (ret != HTTP_START_FAILED)
- error("%s while accessing %s
\n
", curl_errorstr, url);
+ error("%s while accessing %s", curl_errorstr, url);
return ret;
}