1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

style nit

This commit is contained in:
Kip Macy 2008-01-13 22:33:49 +00:00
parent 9c76da338c
commit 9b063e763d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175302

View File

@ -2472,7 +2472,8 @@ init_cluster_mbuf(caddr_t cl, int flags, int type, uma_zone_t zone)
struct mbuf *m;
int header_size;
header_size = sizeof(struct m_hdr) + sizeof(struct pkthdr) + sizeof(struct m_ext_) + sizeof(uint32_t);
header_size = sizeof(struct m_hdr) + sizeof(struct pkthdr) +
sizeof(struct m_ext_) + sizeof(uint32_t);
bzero(cl, header_size);
m = (struct mbuf *)cl;