aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wccp.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-01 16:37:04 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-01 16:37:04 +0000
commitf70b7bb15b7b56d482ab0ccea05f50b52fcb642f (patch)
treebae37095230404e0c773f888125d9476cd224df8 /epan/dissectors/packet-wccp.c
parent8524df12c366ffff1dfdc92b5203e5865d6e8df8 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=47427
Diffstat (limited to 'epan/dissectors/packet-wccp.c')
-rw-r--r--epan/dissectors/packet-wccp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-wccp.c b/epan/dissectors/packet-wccp.c
index f88baf3d86..0ae754e37b 100644
--- a/epan/dissectors/packet-wccp.c
+++ b/epan/dissectors/packet-wccp.c
@@ -326,7 +326,7 @@ dissect_wccp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_
offset += HASH_INFO_SIZE;
proto_tree_add_item(wccp_tree, hf_recvd_id, tvb, offset,
4, ENC_BIG_ENDIAN);
- offset += 4;
+ /*offset += 4;*/
break;
case WCCP_I_SEE_YOU: