aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-e212.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-02-06 22:16:52 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-02-06 22:16:52 +0000
commit0625d95778ff3cb96bbb0c902010200e949942e9 (patch)
tree138d1a43deedc72ed1d144b250a2bce070ecb926 /epan/dissectors/packet-e212.c
parentcbd273a05d346aae10d7d9d9ccd4b5ba1162982d (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=40906
Diffstat (limited to 'epan/dissectors/packet-e212.c')
-rw-r--r--epan/dissectors/packet-e212.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-e212.c b/epan/dissectors/packet-e212.c
index add7d1ee32..ae443ee9e1 100644
--- a/epan/dissectors/packet-e212.c
+++ b/epan/dissectors/packet-e212.c
@@ -2386,7 +2386,6 @@ dissect_e212_mcc_mnc_ep_str(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
if ((mnc1 > 9) || (mnc2 > 9) || ((mnc3 > 9) && (mnc3 != 0x0f)))
expert_add_info_format(pinfo, item, PI_MALFORMED, PI_WARN, "MNC contains non-decimal digits");
- offset++;
return mcc_mnc_str;
}