style(9) for r236563.

This commit is contained in:
Gleb Smirnoff 2012-06-05 05:16:04 +00:00
parent 14d33c7e35
commit 36eeafa0e5

View File

@ -2182,9 +2182,9 @@ kern_sendfile(struct thread *td, struct sendfile_args *uap,
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;