From: Stefan Weil Date: Thu, 21 Jul 2011 19:46:45 +0000 (+0200) Subject: slirp: Fix unusual "comments" in unused code X-Git-Tag: TizenStudio_2.0_p2.3~2536^2~64^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7ef376606d3ee8e126323afc11ec13b913794ef;p=sdk%2Femulator%2Fqemu.git slirp: Fix unusual "comments" in unused code cppcheck detected two rather strange comments which were not correctly written as C comments. They did not cause any harm because they were framed by #ifdef notdef ... #endif, so they were never compiled. Fix them nevertheless (we could also remove the unused code). Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/slirp/ip_input.c b/slirp/ip_input.c index 5e67631..c7b3eb4 100644 --- a/slirp/ip_input.c +++ b/slirp/ip_input.c @@ -511,7 +511,7 @@ typedef uint32_t n_time; */ break; } - off--; / * 0 origin * / + off--; /* 0 origin */ if (off > optlen - sizeof(struct in_addr)) { /* * End of source route. Should be for us. @@ -554,7 +554,7 @@ typedef uint32_t n_time; /* * If no space remains, ignore. */ - off--; * 0 origin * + off--; /* 0 origin */ if (off > optlen - sizeof(struct in_addr)) break; bcopy((caddr_t)(&ip->ip_dst), (caddr_t)&ipaddr.sin_addr,