commit | 369c86e7889ef7f4c9902e25156d3193d4046a2a | [log] [tgz] |
---|---|---|
author | Blue Swirl <blauwirbel@gmail.com> | Sun Mar 07 13:45:37 2010 +0000 |
committer | Blue Swirl <blauwirbel@gmail.com> | Sun Mar 07 13:45:37 2010 +0000 |
tree | 581b4317462526ee2ec9342520cdd6bca7e0fccb | |
parent | aca9fcd28e8a40f2555f8d6d113e4988335aa629 [diff] [blame] |
slirp: remove dead increments, spotted by clang Value stored is never read. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
diff --git a/slirp/tcp_subr.c b/slirp/tcp_subr.c index 7851307..0a370f1 100644 --- a/slirp/tcp_subr.c +++ b/slirp/tcp_subr.c
@@ -857,7 +857,7 @@ if (p == 7071) p = 0; *(u_char *)bptr++ = (p >> 8) & 0xff; - *(u_char *)bptr++ = p & 0xff; + *(u_char *)bptr = p & 0xff; ra = 0; return 1; /* port redirected, we're done */ break;