svn commit: r307312 - stable/11/lib/libc/gen

Konstantin Belousov kib at FreeBSD.org
Fri Oct 14 09:34:50 UTC 2016


Author: kib
Date: Fri Oct 14 09:34:48 2016
New Revision: 307312
URL: https://svnweb.freebsd.org/changeset/base/307312

Log:
  MFC r307037:
  Correct indent.

Modified:
  stable/11/lib/libc/gen/recvmmsg.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/lib/libc/gen/recvmmsg.c
==============================================================================
--- stable/11/lib/libc/gen/recvmmsg.c	Fri Oct 14 09:28:59 2016	(r307311)
+++ stable/11/lib/libc/gen/recvmmsg.c	Fri Oct 14 09:34:48 2016	(r307312)
@@ -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