aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bssgp.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-03-15 06:26:47 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-03-15 06:26:47 +0000
commitef249623e636f650138419de0e42db84c53f3263 (patch)
tree469c739dd566a492e46ef7d5cb8cb0e57bc684cb /epan/dissectors/packet-bssgp.c
parentaa3ebebefeb74119ce253f19cf1fa44670131d5f (diff)
[-Wmissing-prototypes]
Use explicit casts. svn path=/trunk/; revision=48313
Diffstat (limited to 'epan/dissectors/packet-bssgp.c')
-rw-r--r--epan/dissectors/packet-bssgp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bssgp.c b/epan/dissectors/packet-bssgp.c
index b2492d925e..62824f0136 100644
--- a/epan/dissectors/packet-bssgp.c
+++ b/epan/dissectors/packet-bssgp.c
@@ -72,6 +72,10 @@
*/
#define BSSGP_SEP ", "
+
+void proto_register_bssgp(void);
+void proto_reg_handoff_bssgp(void);
+
static int bssgp_decode_nri = 0;
static guint bssgp_nri_length = 4;
@@ -6338,7 +6342,7 @@ static void (*bssgp_msg_fcn[])(tvbuff_t *tvb, proto_tree *tree, packet_info *pin
NULL, /* NONE */
};
-void get_bssgp_msg_params(guint8 oct, const gchar **msg_str, int *ett_tree, int *hf_idx, msg_fcn *msg_fcn_p)
+static void get_bssgp_msg_params(guint8 oct, const gchar **msg_str, int *ett_tree, int *hf_idx, msg_fcn *msg_fcn_p)
{
gint idx;