Fix copy-and-paste gone wrong.

This commit is contained in:
Gregory Nutt 2016-12-09 17:27:24 -06:00
parent 559a027229
commit 38b9ab09d9

View File

@ -281,7 +281,7 @@ ssize_t send(int sockfd, FAR const void *buf, size_t len, int flags)
/* And let psock_send do all of the work */ /* And let psock_send do all of the work */
ret = psock_send(psock, buf, len, flags, to, tolen); ret = psock_send(psock, buf, len, flags);
leave_cancellation_point(); leave_cancellation_point();
return ret; return ret;
} }