A21: fix warning: no previous prototype for function ... [-Wmissing-prototypes]

Second try... ;-)

Remove also double space

Change-Id: I77aa269c1abae18b4fb9daec6cc0ac862cf4ab9f
Reviewed-on: https://code.wireshark.org/review/5421
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2014-11-21 11:24:50 +01:00 committed by Anders Broman
parent 605a6aece2
commit 1cdf644bdb
2 changed files with 3 additions and 2 deletions

View File

@ -32,6 +32,7 @@
#include <epan/expert.h>
#include "packet-e212.h"
#include "packet-a21.h"
void proto_register_a21(void);
void proto_reg_handoff_a21(void);
@ -535,7 +536,7 @@ static const value_string a21_element_type_vals[] = {
void
dissect_a21_ie_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *top_tree, proto_tree *tree, gint offset, guint8 message_type)
dissect_a21_ie_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *top_tree, proto_tree *tree, gint offset, guint8 message_type)
{
guint8 ie_type, length_len;
guint16 length = 0;

View File

@ -29,7 +29,7 @@ extern "C" {
#include "ws_symbol_export.h"
WS_DLL_PUBLIC
void dissect_a21_ie_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *top_tree, proto_tree *tree, gint offset, guint8 message_type);
void dissect_a21_ie_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *top_tree, proto_tree *tree, gint offset, guint8 message_type);
#ifdef __cplusplus
}