aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_fp.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-07 11:49:06 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-07 11:49:06 +0000
commitb6e797577a53aea0a7de3f4890dfcfd2d0312276 (patch)
tree7ab375c929e4f1b09d20ff72b9e3c46484fe2648 /epan/dissectors/packet-umts_fp.c
parentc6e1e37c8862cd01bc8fc4990e230cfe6471c04e (diff)
From Rishie Sharma:
compile error fix git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44296 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, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index 610aa8a6b7..51a2abde45 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -3349,7 +3349,6 @@ void dissect_hsdsch_common_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto
guint64 no_of_pdus[MAX_PDU_BLOCKS];
guint header_length = 0;
guint8 newieflags = 0;
- /*guint8 hsdsch_physical_layer_category = 0;*/
umts_mac_info *macinf;
rlc_info *rlcinf;
@@ -3532,6 +3531,7 @@ 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++;