diff options
Diffstat (limited to 'epan/dissectors/asn1/lix2/packet-lix2-template.c')
-rw-r--r-- | epan/dissectors/asn1/lix2/packet-lix2-template.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/epan/dissectors/asn1/lix2/packet-lix2-template.c b/epan/dissectors/asn1/lix2/packet-lix2-template.c index 9a7c14e1..976f88ab 100644 --- a/epan/dissectors/asn1/lix2/packet-lix2-template.c +++ b/epan/dissectors/asn1/lix2/packet-lix2-template.c @@ -1,7 +1,7 @@ /* packet-lix2-template.c * Routines for Lawful Interception X2 xIRI event dissection * - * See 3GPP TS33.128. + * See 3GPP TS33.128 V18.5.0 * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> @@ -15,6 +15,7 @@ #include <epan/packet.h> #include <epan/conversation.h> #include <epan/asn1.h> +#include <wsutil/array.h> #include "packet-ber.h" @@ -26,8 +27,8 @@ void proto_reg_handoff_lix2(void); void proto_register_lix2(void); /* Initialize the protocol and registered fields */ -static int proto_lix2 = -1; -static dissector_handle_t lix2_handle = NULL; +static int proto_lix2; +static dissector_handle_t lix2_handle; #include "packet-lix2-hf.c" @@ -45,7 +46,7 @@ void proto_register_lix2(void) { }; /* List of subtrees */ - static gint *ett[] = { + static int *ett[] = { #include "packet-lix2-ettarr.c" }; |