Skip to content

Commit

Permalink
Break long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdickmeiss committed Dec 2, 2021
1 parent ef66da6 commit a4c6626
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/url.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,8 @@ Z_HTTP_Response *yaz_url_exec(yaz_url_t p, const char *uri,
ret = cs_rcvconnect(conn);
if (ret < 0)
{
wrbuf_printf(p->w_error, "cs_rcvconnect failed for URL %s", uri);
wrbuf_printf(p->w_error,
"cs_rcvconnect failed for URL %s", uri);
log_warn(p);
break;
}
Expand All @@ -268,7 +269,8 @@ Z_HTTP_Response *yaz_url_exec(yaz_url_t p, const char *uri,
ret = cs_get(conn, &netbuffer, &netlen);
if (ret <= 0)
{
wrbuf_printf(p->w_error, "cs_get failed for URL %s", uri);
wrbuf_printf(p->w_error, "cs_get failed for URL %s",
uri);
log_warn(p);
break;
}
Expand Down

0 comments on commit a4c6626

Please sign in to comment.