svn commit: r236598 - head/sys/kern

Gleb Smirnoff glebius at FreeBSD.org
Tue Jun 5 05:16:05 UTC 2012


Author: glebius
Date: Tue Jun  5 05:16:04 2012
New Revision: 236598
URL: http://svn.freebsd.org/changeset/base/236598

Log:
  style(9) for r236563.

Modified:
  head/sys/kern/uipc_syscalls.c

Modified: head/sys/kern/uipc_syscalls.c
==============================================================================
--- head/sys/kern/uipc_syscalls.c	Tue Jun  5 03:14:49 2012	(r236597)
+++ head/sys/kern/uipc_syscalls.c	Tue Jun  5 05:16:04 2012	(r236598)
@@ -2182,9 +2182,9 @@ retry_space:
 			m0->m_len = xfsize;
 
 			/* Append to mbuf chain. */
-			if (mtail != NULL) {
+			if (mtail != NULL)
 				mtail->m_next = m0;
-			} else if (m != NULL)
+			else if (m != NULL)
 				m_last(m)->m_next = m0;
 			else
 				m = m0;


More information about the svn-src-all mailing list