aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_fp.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-07 13:18:01 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-07 13:18:01 +0000
commit2040d6d5041831795abbfd5db3b9a1adf574dc88 (patch)
treef887dc46293f73830d520cd6cceb640a4bc05b3b /epan/dissectors/packet-umts_fp.c
parentb6e797577a53aea0a7de3f4890dfcfd2d0312276 (diff)
Remove a set-but-not-used variable.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44297 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-umts_fp.c')
-rw-r--r--epan/dissectors/packet-umts_fp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index 51a2abde45..dae172e98f 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -3531,12 +3531,10 @@ void dissect_hsdsch_common_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto
/* If newieflags == 0000 0010 then this indicates that there is a
* HS-DSCH physical layer category and no other New IE flags. */
if (newieflags == 2) {
- guint8 hsdsch_physical_layer_category = 0;
/* HS-DSCH physical layer category presence bit. */
proto_tree_add_uint(tree, hf_fp_hsdsch_new_ie_flag[6], tvb, offset, 1, newieflags);
offset++;
/* HS-DSCH physical layer category. */
- hsdsch_physical_layer_category = tvb_get_bits8(tvb, offset*8, 6);
proto_tree_add_bits_item(tree, hf_fp_hsdsch_physical_layer_category, tvb, offset*8, 6, ENC_BIG_ENDIAN);
offset++;
}