svn commit: r307037 - head/lib/libc/gen

Konstantin Belousov kib at FreeBSD.org
Tue Oct 11 11:46:03 UTC 2016


Author: kib
Date: Tue Oct 11 11:46:02 2016
New Revision: 307037
URL: https://svnweb.freebsd.org/changeset/base/307037

Log:
  Correct indent.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	3 days

Modified:
  head/lib/libc/gen/recvmmsg.c

Modified: head/lib/libc/gen/recvmmsg.c
==============================================================================
--- head/lib/libc/gen/recvmmsg.c	Tue Oct 11 11:45:12 2016	(r307036)
+++ head/lib/libc/gen/recvmmsg.c	Tue Oct 11 11:46:02 2016	(r307037)
@@ -83,10 +83,9 @@ recvmmsg(int s, struct mmsghdr *__restri
 		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);
 		}
 


More information about the svn-src-all mailing list