aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-acn.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2011-04-17 18:59:17 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2011-04-17 18:59:17 +0000
commita3391d1a95ce185e315fc8f14e8cb3b38e5c2947 (patch)
treedf20e601e452f30cf0ae5a0517523c3d5aafb768 /epan/dissectors/packet-acn.c
parent3c53c25a0c2622dc59a07f6b16e7d75fb3f3960b (diff)
Removed an unneeded assignment, they are both always 0.
Found by clang. svn path=/trunk/; revision=36686
Diffstat (limited to 'epan/dissectors/packet-acn.c')
-rw-r--r--epan/dissectors/packet-acn.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-acn.c b/epan/dissectors/packet-acn.c
index f09173e894..e5ccdf9e0c 100644
--- a/epan/dissectors/packet-acn.c
+++ b/epan/dissectors/packet-acn.c
@@ -2622,8 +2622,6 @@ dissect_acn(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
ti = proto_tree_add_item(tree, proto_acn, tvb, 0, -1, FALSE);
acn_tree = proto_item_add_subtree(ti, ett_acn);
- pdu_offsets.start = data_offset;
-
/* add preamble, postamble and ACN Packet ID */
proto_tree_add_item(acn_tree, hf_acn_preamble_size, tvb, data_offset, 2, FALSE);
data_offset += 2;