style(9): sort alignment in udp_recv(..)

MFC after:	3 weeks
This commit is contained in:
Enji Cooper 2016-12-28 04:31:07 +00:00
parent 8d7f605b6c
commit 5120d21c63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=310656

View File

@ -334,10 +334,10 @@ static ssize_t
udp_recv(struct tport *tp, struct port_input *pi)
{
struct udp_port *p = (struct udp_port *)tp;
struct cmsghdr *cmsgp;
struct in_addr *laddr;
struct msghdr msg;
char cbuf[CMSG_SPACE(sizeof(struct in_addr))];
struct cmsghdr *cmsgp;
ssize_t ret;
memset(cbuf, 0, sizeof(cbuf));