aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-06-04 18:22:03 +0000
committerJörg Mayer <jmayer@loplof.de>2006-06-04 18:22:03 +0000
commit49618dfd6da6d3ff87d98bbac519b8be2959c58e (patch)
treeaef3ab9e7c9021148297765b8ea2930936e25f1e
parentaf663527d2631f2880142e2bfae5a0a5a7288bec (diff)
warning fix: declare some functions static
svn path=/trunk/; revision=18335
-rw-r--r--epan/dissectors/packet-bthci_cmd.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c
index 0b890564e3..7b32d8de48 100644
--- a/epan/dissectors/packet-bthci_cmd.c
+++ b/epan/dissectors/packet-bthci_cmd.c
@@ -508,7 +508,7 @@ static const value_string cmd_role_switch_modes[] = {
};
-void
+static void
dissect_link_control_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, guint16 cmd_ocf)
{
proto_item *item;
@@ -692,7 +692,7 @@ dissect_link_control_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, prot
}
}
-void
+static void
dissect_link_policy_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, guint16 cmd_ocf)
{
proto_item *item;
@@ -787,7 +787,7 @@ dissect_link_policy_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto
}
}
-void
+static void
dissect_host_controller_baseband_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
proto_tree *tree, guint16 cmd_ocf)
{
@@ -1131,7 +1131,8 @@ dissect_host_controller_baseband_cmd(tvbuff_t *tvb, int offset, packet_info *pin
}
}
-void dissect_informational_parameters_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
+static void
+dissect_informational_parameters_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
proto_tree *tree, guint16 cmd_ocf)
{
switch(cmd_ocf) {
@@ -1146,7 +1147,7 @@ void dissect_informational_parameters_cmd(tvbuff_t *tvb, int offset, packet_info
}
}
-void
+static void
dissect_status_parameters_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
proto_tree *tree, guint16 cmd_ocf)
{
@@ -1168,7 +1169,7 @@ dissect_status_parameters_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
}
}
-void
+static void
dissect_testing_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, guint16 cmd_ocf)
{
switch(cmd_ocf) {