aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2007-09-24 21:51:41 +0000
committerAnders Broman <anders.broman@ericsson.com>2007-09-24 21:51:41 +0000
commit797cf529ebc7b678dbf6060985ec8feb2b748317 (patch)
tree9934ac2e1f9ea2677c6a735d4d4ffe42bcf8c434 /epan
parent29c4953c11b1029ba6c5a42575db4c07637f26a2 (diff)
Fix warnings.
svn path=/trunk/; revision=22943
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-rsl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-rsl.c b/epan/dissectors/packet-rsl.c
index ea67128630..b8e7fa36d0 100644
--- a/epan/dissectors/packet-rsl.c
+++ b/epan/dissectors/packet-rsl.c
@@ -692,7 +692,7 @@ dissect_rsl_ie_bs_power(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
* 9.3.5 Channel Identification
*/
static int
-dissect_rsl_ie_ch_id(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, gboolean is_mandatory)
+dissect_rsl_ie_ch_id(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int offset, gboolean is_mandatory)
{
proto_item *ti;
proto_tree *ie_tree;
@@ -738,7 +738,7 @@ static const true_false_string rsl_dtx_vals = {
};
static int
-dissect_rsl_ie_ch_mode(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, gboolean is_mandatory)
+dissect_rsl_ie_ch_mode(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int offset, gboolean is_mandatory)
{
proto_item *ti;
proto_tree *ie_tree;
@@ -799,7 +799,7 @@ static const value_string rsl_algorithm_id_vals[] = {
};
static int
-dissect_rsl_ie_enc_inf(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, gboolean is_mandatory)
+dissect_rsl_ie_enc_inf(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int offset, gboolean is_mandatory)
{
proto_item *ti;
proto_tree *ie_tree;
@@ -1994,9 +1994,9 @@ dissct_rsl_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
/* SACCH Information 9.3.29 O 8) TLV >=3 */
/* UIC 9.3.50 O 9) TLV 3 */
/* Main channel reference 9.3.51 O 10) TV 2 *
- offset = dissect_rsl_ie_main_ch_ref(tvb, pinfo, tree, offset, FALSE);
+ offset = dissect_rsl_ie_main_ch_ref(tvb, pinfo, tree, offset, FALSE); */
/* MultiRate configuration 9.3.52 O 11) TLV >=4 *
- offset = dissect_rsl_ie_multirate_conf(tvb, pinfo, tree, offset, FALSE);
+ offset = dissect_rsl_ie_multirate_conf(tvb, pinfo, tree, offset, FALSE);*/
/* MultiRate Control 9.3.53 O 12) TV 2 */
/* Supported Codec Types 9.3.54 O 12) TLV >=5 */
/* TFO transparent container 9.3.59 O 12) TLV >=3 */