Fix the last missing parentheses for a return statement in bpf_filter.c.

This commit is contained in:
Jung-uk Kim 2008-08-29 20:00:55 +00:00
parent 7c5db425bf
commit b87fd66b6d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182456

View File

@ -103,7 +103,7 @@ m_xword(struct mbuf *m, bpf_u_int32 k, int *err)
cp = mtod(m, u_char *) + k;
if (len - k >= 4) {
*err = 0;
return EXTRACT_LONG(cp);
return (EXTRACT_LONG(cp));
}
m0 = m->m_next;
if (m0 == 0 || m0->m_len + len - k < 4)