aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_fp.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2012-08-07 13:18:01 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2012-08-07 13:18:01 +0000
commitfe7e9760fa21b47a93dba25f4d2703bd30299682 (patch)
treef887dc46293f73830d520cd6cceb640a4bc05b3b /epan/dissectors/packet-umts_fp.c
parent7623b9bae77d119c00adf987e78a268031a40ccb (diff)
Remove a set-but-not-used variable.
svn path=/trunk/; revision=44297
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++;
}