fix style.. Return in the kernel always has () around the arguments.

This commit is contained in:
Julian Elischer 2002-09-19 03:18:44 +00:00
parent 1494277d50
commit 4a49235b89
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103587

View file

@ -728,7 +728,7 @@ m_length(struct mbuf *m0, struct mbuf **last)
u_int len;
if ((m0->m_flags & M_PKTHDR) != 0)
return m0->m_pkthdr.len;
return (m0->m_pkthdr.len);
len = 0;
for (m = m0; m != NULL; m = m->m_next) {