aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_cmd.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-02 23:10:31 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-02 23:10:31 +0000
commit01af8f057a1e2ac153ab58500957d5df14064f98 (patch)
tree690968ed7faf1f188a324262f6631173fe043b94 /epan/dissectors/packet-bthci_cmd.c
parente070841f5fdbae37f729f88b15236b99264cd0b8 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=51652
Diffstat (limited to 'epan/dissectors/packet-bthci_cmd.c')
-rw-r--r--epan/dissectors/packet-bthci_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c
index 9646aac1ef..eac2357432 100644
--- a/epan/dissectors/packet-bthci_cmd.c
+++ b/epan/dissectors/packet-bthci_cmd.c
@@ -3309,7 +3309,7 @@ dissect_bthci_cmd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (tvb_length_remaining(tvb, offset) > 0) {
proto_tree_add_expert(bthci_cmd_tree, pinfo, &ei_command_parameter_unexpected, tvb, offset, -1);
- offset += tvb_length_remaining(tvb, offset);
+ /*offset += tvb_length_remaining(tvb, offset);*/
}
}