summaryrefslogtreecommitdiff
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-11-12 09:22:28 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-11-12 09:22:28 +0000
commitca63f71d93cd9d71d242a40590b1334261d6a3d2 (patch)
treea9f625d948287ef082bcc1b18fc029cfc03f40c5 /epan
parente706af25caa761f888a61b9e7fee078aa8d16144 (diff)
downloadwireshark-ca63f71d93cd9d71d242a40590b1334261d6a3d2.tar.gz
Fix Dead Store (Dead assignement/Dead increment) warning found by Clang
svn path=/trunk/; revision=53266
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-openflow_v1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-openflow_v1.c b/epan/dissectors/packet-openflow_v1.c
index 9a1c03f572..2ece6d529c 100644
--- a/epan/dissectors/packet-openflow_v1.c
+++ b/epan/dissectors/packet-openflow_v1.c
@@ -698,7 +698,7 @@ dissect_openflow_flow_mod(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, i
/* uint16_t flags; One of OFPFF_*. */
proto_tree_add_item(tree, hf_openflow_flags, tvb, offset, 2, ENC_BIG_ENDIAN);
- offset+=2;
+ /*offset+=2;*/
}
static int