aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-v5ua.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-01 16:36:29 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-01 16:36:29 +0000
commita3e901f508f72a8463a59700a39794322a5ef178 (patch)
tree9a0d3e9523acb7f9f0d9754c852a4e56cbf1f1f2 /epan/dissectors/packet-v5ua.c
parentd5557b458e7d0334614aa033158579318dda4d26 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=47423
Diffstat (limited to 'epan/dissectors/packet-v5ua.c')
-rw-r--r--epan/dissectors/packet-v5ua.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-v5ua.c b/epan/dissectors/packet-v5ua.c
index f3e7375329..b2b1b941d5 100644
--- a/epan/dissectors/packet-v5ua.c
+++ b/epan/dissectors/packet-v5ua.c
@@ -161,7 +161,6 @@ dissect_int_interface_identifier_parameter(tvbuff_t *parameter_tvb, proto_tree *
number_of_ids= (tvb_get_ntohs(parameter_tvb, PARAMETER_LENGTH_OFFSET) - PARAMETER_HEADER_LENGTH) / INT_INTERFACE_ID_LENGTH;
offset = INT_IF_ID_LINK_OFFSET;
- identifier = tvb_get_ntohl(parameter_tvb,INT_IF_ID_LINK_OFFSET)>>5;
proto_item_append_text(parameter_item, "(");
for (id_number = 0; id_number < number_of_ids; id_number++) {
proto_tree_add_item(parameter_tree, hf_link_id, parameter_tvb, offset, INT_IF_ID_LINK_LENGTH, ENC_BIG_ENDIAN);