diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-24 07:28:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-24 07:28:34 +0000 |
commit | caf1d28fed5aad625053963d3abbe865af810444 (patch) | |
tree | 03f179b971af1d108a88c190db0cff3b3baaa83e /sys/netinet | |
parent | 9852762a01f35b5a19f5b3f275b135639f1e1c30 (diff) |
Add missing (implied) int to a variable declaration; thorpej
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 05414949bcf..5bdaae2f0ad 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_output.c,v 1.7 1997/08/26 20:02:33 deraadt Exp $ */ +/* $OpenBSD: tcp_output.c,v 1.8 1997/11/24 07:28:33 deraadt Exp $ */ /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */ /* @@ -86,7 +86,7 @@ tcp_output(tp) register struct mbuf *m; register struct tcpiphdr *ti; u_char opt[MAX_TCPOPTLEN]; - unsigned optlen, hdrlen; + unsigned int optlen, hdrlen; int idle, sendalot; /* |