aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-01 16:36:15 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-01 16:36:15 +0000
commitd5557b458e7d0334614aa033158579318dda4d26 (patch)
tree599b756676bc0fcfe47a95f42fa17cdc7fb0866e /epan/dissectors
parenta71824a38ba3bea613d4ecf658b80cc464506d76 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=47422
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-vrrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-vrrp.c b/epan/dissectors/packet-vrrp.c
index ac3cac1a3b..7a29e960b5 100644
--- a/epan/dissectors/packet-vrrp.c
+++ b/epan/dissectors/packet-vrrp.c
@@ -221,7 +221,7 @@ dissect_vrrp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
VRRP_AUTH_DATA_LEN,
"Authentication string: `%s'",
auth_buf);
- offset+=8;
+ /*offset+=8;*/
}
}