summaryrefslogtreecommitdiff
path: root/slirp/tcp_subr.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-04-26 19:50:09 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-04-26 19:50:09 +0000
commit9fafc9eaf0d1cf3894b0b611f2104ef376f2594f (patch)
treeb43b123498c5e26c7549e6ae59a35b9eac1ad27f /slirp/tcp_subr.c
parent1ef59d0acf7c71e9b863bff904ceac74ce9bd107 (diff)
downloadqemu-9fafc9eaf0d1cf3894b0b611f2104ef376f2594f.tar.gz
avoid errno variable name
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@766 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'slirp/tcp_subr.c')
-rw-r--r--slirp/tcp_subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/tcp_subr.c b/slirp/tcp_subr.c
index bf8a2026f3..07cfc0e4fe 100644
--- a/slirp/tcp_subr.c
+++ b/slirp/tcp_subr.c
@@ -240,7 +240,7 @@ tcp_newtcpcb(so)
* the specified error. If connection is synchronized,
* then send a RST to peer.
*/
-struct tcpcb *tcp_drop(struct tcpcb *tp, int errno)
+struct tcpcb *tcp_drop(struct tcpcb *tp, int err)
{
/* tcp_drop(tp, errno)
register struct tcpcb *tp;