aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mrcpv2.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-12-14 16:09:57 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-12-14 16:09:57 +0000
commit715e2d66997c5470caeda475f83cfa5fc4b60321 (patch)
tree2e4f9433568c470495531ceb21689755f4308b6b /epan/dissectors/packet-mrcpv2.c
parent5a4720b28d1ebf0be05af3e1e577e05a72140342 (diff)
Fix [-Wmissing-prototypes]
svn path=/trunk/; revision=54095
Diffstat (limited to 'epan/dissectors/packet-mrcpv2.c')
-rw-r--r--epan/dissectors/packet-mrcpv2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-mrcpv2.c b/epan/dissectors/packet-mrcpv2.c
index f94a8c40bc..532602dbe5 100644
--- a/epan/dissectors/packet-mrcpv2.c
+++ b/epan/dissectors/packet-mrcpv2.c
@@ -49,6 +49,9 @@
#include <wsutil/str_util.h>
+void proto_register_mrcpv2(void);
+void proto_reg_handoff_mrcpv2(void);
+
/* mrcp-version SP message-length */
/* mrcp-version = "MRCP" "/" 1*2DIGIT "." 1*2DIGIT ==> up to 10 chars */
/* SP ==> whitespace, 1 char */
@@ -269,9 +272,6 @@ static const value_string header_type_vals[] = {
{ 0, NULL }
};
-/* Forward declaration we need below (if using proto_reg_handoff... as a prefs callback) */
-void proto_reg_handoff_mrcpv2(void);
-
/* Initialize the protocol and registered fields */
static int proto_mrcpv2 = -1;
static int hf_mrcpv2_Request_Line = -1;