aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-igap.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-11-12 12:57:36 +0100
committerMichael Mann <mmann78@netscape.net>2014-11-12 20:53:01 +0000
commitae1630db71c7a2d4db87b2ad502f84bd3dca0894 (patch)
tree626388d0908034c6bb5ed0459547db0f712a61c6 /epan/dissectors/packet-igap.c
parent54aea456331825be6f802edec510e4cb2e6cc34a (diff)
Fix warning: no previous prototype for function ... [-Wmissing-prototypes]
warning coming after g055e4768ece and g421913b721 Change-Id: I5caeeb89c559faef8007f2946c68c7172b75dfa8 Reviewed-on: https://code.wireshark.org/review/5250 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-igap.c')
-rw-r--r--epan/dissectors/packet-igap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-igap.c b/epan/dissectors/packet-igap.c
index 779612f3b4..1b9c8ffc00 100644
--- a/epan/dissectors/packet-igap.c
+++ b/epan/dissectors/packet-igap.c
@@ -48,6 +48,7 @@
#include "packet-igmp.h"
void proto_register_igap(void);
+void proto_reg_handoff_igap(void);
static int proto_igap = -1;
static int hf_type = -1;
@@ -132,7 +133,7 @@ static const value_string igap_account_status[] = {
#define MESSAGE_SIZE 64
/* This function is only called from the IGMP dissector */
-int
+static int
dissect_igap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void* data _U_)
{
proto_tree *tree;