Skip to content
Snippets Groups Projects
Commit e5b7dc56 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

syntax error

parent c2d8025a
No related branches found
No related tags found
No related merge requests found
......@@ -274,7 +274,7 @@ CURLcode Curl_write(struct connectdata *conn, int sockfd,
may be EWOULDBLOCK or on some systems EAGAIN when it returned
due to its inability to send off data without blocking. We
therefor treat both error codes the same here */
if((EWOULDBLOCK == errno) || ((EAGAIN == errno))
if((EWOULDBLOCK == errno) || (EAGAIN == errno))
#endif
{
/* this is just a case of EWOULDBLOCK */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment