aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_rlcmac.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2012-09-10 21:00:18 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2012-09-10 21:00:18 +0000
commit1f34b3204094d13a81cf6c33dd3f3b6808a60639 (patch)
tree9d3906df382a47808b8f4c5ba7e83938034250e9 /epan/dissectors/packet-gsm_rlcmac.c
parent3f1e1285f3250cc26dd4fa9272eba48adea6c082 (diff)
fix compiler errors
packet-gsm_rlcmac.c:6341: error: missing braces around initializer packet-gsm_rlcmac.c:473: error: hf_h110qi_t_tqi defined but not used packet-gsm_rlcmac.c:474: error: hf_packetuplinkid_tqi defined but not used packet-gsm_rlcmac.c:477: error: hf_multiblock_allocation_number_of_radio_blocks_allocated defined but not used svn path=/trunk/; revision=44855
Diffstat (limited to 'epan/dissectors/packet-gsm_rlcmac.c')
-rw-r--r--epan/dissectors/packet-gsm_rlcmac.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/epan/dissectors/packet-gsm_rlcmac.c b/epan/dissectors/packet-gsm_rlcmac.c
index 745559a609..268092e837 100644
--- a/epan/dissectors/packet-gsm_rlcmac.c
+++ b/epan/dissectors/packet-gsm_rlcmac.c
@@ -470,11 +470,8 @@ static int hf_single_block_allocation_timeslot_number;
static int hf_dtm_dynamic_allocation_extended_dynamic_allocation;
static int hf_dtm_dynamic_allocation_rlc_data_blocks_granted;
static int hf_dtm_single_block_allocation_timeslot_number;
-static int hf_h110qi_t_tqi;
-static int hf_packetuplinkid_tqi;
static int hf_compact_reducedma_bitmaplength;
static int hf_multiblock_allocation_timeslot_number;
-static int hf_multiblock_allocation_number_of_radio_blocks_allocated;
static int hf_pua_egprs_00_arac_retransmission_request;
/*< Packet Downlink Assignment message content > */
@@ -6337,7 +6334,7 @@ static const value_string ul_rlc_message_type_vals[] = {
static value_string_ext ul_rlc_message_type_vals_ext = VALUE_STRING_EXT_INIT(ul_rlc_message_type_vals);
-static const true_false_string retry_vals[] = {
+static const true_false_string retry_vals = {
"MS sent channel request message twice or more",
"MS sent channel request message once"
};