Correct indent.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2016-10-11 11:46:02 +00:00
parent c3b83049d6
commit 6886c70100
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307037

View File

@ -83,10 +83,9 @@ recvmmsg(int s, struct mmsghdr *__restrict msgvec, size_t vlen, int flags,
ret = __sys_recvmsg(s, &msgvec[i].msg_hdr, flags);
if (ret == -1) {
/* We have received messages. Let caller know
* about the data received, socket
* error is returned on next
* invocation.
*/
* about the data received, socket error is
* returned on next invocation.
*/
return (rcvd);
}