aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax/msg_arq.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-05-26 19:31:50 +0000
committerGuy Harris <guy@alum.mit.edu>2007-05-26 19:31:50 +0000
commit614cdfcdbae1903e6d898c98354a5c005181adaf (patch)
tree6efcb9920846072dd261f4de77708237fa8a1879 /plugins/wimax/msg_arq.c
parent2be10fe10b5ae3c1a405b6a5f435d9c5dd38523f (diff)
Flag some parameters as unused.
svn path=/trunk/; revision=21955
Diffstat (limited to 'plugins/wimax/msg_arq.c')
-rw-r--r--plugins/wimax/msg_arq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/wimax/msg_arq.c b/plugins/wimax/msg_arq.c
index 488aa0786b..722b281a66 100644
--- a/plugins/wimax/msg_arq.c
+++ b/plugins/wimax/msg_arq.c
@@ -344,7 +344,7 @@ void proto_register_mac_mgmt_msg_arq_reset(void)
}
/* Decode ARQ-Feedback messages. */
-void dissect_mac_mgmt_msg_arq_feedback_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+void dissect_mac_mgmt_msg_arq_feedback_decoder(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
{
guint offset = 0;
guint arq_feedback_ie_count = 0;
@@ -442,7 +442,7 @@ void dissect_mac_mgmt_msg_arq_feedback_decoder(tvbuff_t *tvb, packet_info *pinfo
}
/* Decode ARQ-Discard messages. */
-void dissect_mac_mgmt_msg_arq_discard_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+void dissect_mac_mgmt_msg_arq_discard_decoder(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
{
guint tvb_len, payload_type;
proto_item *arq_discard_item = NULL;
@@ -474,7 +474,7 @@ void dissect_mac_mgmt_msg_arq_discard_decoder(tvbuff_t *tvb, packet_info *pinfo,
}
/* Decode ARQ-Reset messages. */
-void dissect_mac_mgmt_msg_arq_reset_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+void dissect_mac_mgmt_msg_arq_reset_decoder(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
{
guint tvb_len, payload_type;
proto_item *arq_reset_item = NULL;