diff options
author | 1997-11-24 07:28:33 +0000 | |
---|---|---|
committer | 1997-11-24 07:28:33 +0000 | |
commit | 645de62fd61bb1763f7d98d1f6536b61316abe33 (patch) | |
tree | 787ef1f92b1c8082b0b7997e7641268e3b46e9f2 | |
parent | missing blank lines (diff) | |
download | wireguard-openbsd-645de62fd61bb1763f7d98d1f6536b61316abe33.tar.xz wireguard-openbsd-645de62fd61bb1763f7d98d1f6536b61316abe33.zip |
Add missing (implied) int to a variable declaration; thorpej
-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; /* |