aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-07-15 18:04:23 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-07-15 18:04:23 +0000
commit3dd52ea2da3ce55e3c74b040c90f6d738aa83ce0 (patch)
treed3f4e1275c27cd9a165f1d22aabdd1cbf63b78ae
parentc39ca07c7efc3372ce47004b9c5dcca88ece1dcd (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=50621
-rw-r--r--epan/dissectors/packet-openflow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-openflow.c b/epan/dissectors/packet-openflow.c
index 992f424823..634a5448c4 100644
--- a/epan/dissectors/packet-openflow.c
+++ b/epan/dissectors/packet-openflow.c
@@ -462,7 +462,7 @@ dissect_openflow_switch_config(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree
offset+=2;
/* miss_send_len */
proto_tree_add_item(tree, hf_openflow_miss_send_len, tvb, offset, 2, ENC_BIG_ENDIAN);
- offset+=2;
+ /*offset+=2;*/
}
/* Code to actually dissect the packets */