aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tnef.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-24 19:13:36 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-24 19:13:36 +0000
commitbb0bb441d2909b9ee11f85d24328dea61b6f2f5f (patch)
treec67c8cd8889e180e422ca69cc9c1f917c7f70c18 /epan/dissectors/packet-tnef.c
parentc5a461e2f81039979b3db1efb240df66e64e9061 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=47861
Diffstat (limited to 'epan/dissectors/packet-tnef.c')
-rw-r--r--epan/dissectors/packet-tnef.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tnef.c b/epan/dissectors/packet-tnef.c
index 2ebf1414dd..9318d0fc5b 100644
--- a/epan/dissectors/packet-tnef.c
+++ b/epan/dissectors/packet-tnef.c
@@ -327,7 +327,7 @@ static void dissect_DTR(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
offset +=2;
proto_tree_add_item(tree, hf_tnef_attribute_date_day_of_week, tvb, offset, 2, ENC_LITTLE_ENDIAN);
- offset +=2;
+ /*offset +=2;*/
}