aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-catapult-dct2000.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2011-04-22 16:31:32 +0000
committerStephen Fisher <steve@stephen-fisher.com>2011-04-22 16:31:32 +0000
commit9b521ba35fd9cd7c6ce495cdf10919a62c06a703 (patch)
tree6275f3ba877466589658e860d8abd22f968b38ea /epan/dissectors/packet-catapult-dct2000.c
parent9a8c08458044c0e343a88949d26f07d1ff03cbac (diff)
Remove enum cast that doesn't do anything and causes a warning about
converting between enum types in clang 3.0 (trunk). svn path=/trunk/; revision=36815
Diffstat (limited to 'epan/dissectors/packet-catapult-dct2000.c')
-rw-r--r--epan/dissectors/packet-catapult-dct2000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-catapult-dct2000.c b/epan/dissectors/packet-catapult-dct2000.c
index 845b685a2e..bcbecf7bf1 100644
--- a/epan/dissectors/packet-catapult-dct2000.c
+++ b/epan/dissectors/packet-catapult-dct2000.c
@@ -990,7 +990,7 @@ static void dissect_pdcp_lte(tvbuff_t *tvb, gint offset,
offset++;
/* Transport channel type */
- p_pdcp_lte_info->BCCHTransport = (LogicalChannelType)tvb_get_guint8(tvb, offset);
+ p_pdcp_lte_info->BCCHTransport = tvb_get_guint8(tvb, offset);
proto_tree_add_item(tree, hf_catapult_dct2000_lte_bcch_transport,
tvb, offset, 1, FALSE);
offset++;