summaryrefslogtreecommitdiffstats
path: root/sys/netinet/in_pcb.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2006-12-29 14:58:18 +0000
committerjhb <jhb@FreeBSD.org>2006-12-29 14:58:18 +0000
commit9adb288460c6cbdf8d3f74594b66975f95a5e1ba (patch)
tree0bd6e69cb90f1df729e2f5b249d86380dbbb5e91 /sys/netinet/in_pcb.c
parent0a6fe7fb48fdccbd2170eb8e5bf80936caee4088 (diff)
downloadFreeBSD-src-9adb288460c6cbdf8d3f74594b66975f95a5e1ba.zip
FreeBSD-src-9adb288460c6cbdf8d3f74594b66975f95a5e1ba.tar.gz
Some whitespace nits and remove a few casts.
Diffstat (limited to 'sys/netinet/in_pcb.c')
-rw-r--r--sys/netinet/in_pcb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index 8817ad8..43306f3 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -182,7 +182,7 @@ in_pcballoc(struct socket *so, struct inpcbinfo *pcbinfo)
inp = uma_zalloc(pcbinfo->ipi_zone, M_NOWAIT);
if (inp == NULL)
return (ENOBUFS);
- bzero(inp,inp_zero_size);
+ bzero(inp, inp_zero_size);
inp->inp_pcbinfo = pcbinfo;
inp->inp_socket = so;
#ifdef MAC
OpenPOWER on IntegriCloud