diff options
Diffstat (limited to 'epan/dissectors/asn1/ns_cert_exts')
-rw-r--r-- | epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c b/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c index 14013c83..40d74dd9 100644 --- a/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c +++ b/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c @@ -12,6 +12,7 @@ #include "config.h" #include <epan/packet.h> +#include <wsutil/array.h> #include "packet-ber.h" @@ -23,7 +24,7 @@ void proto_register_ns_cert_exts(void); void proto_reg_handoff_ns_cert_exts(void); /* Initialize the protocol and registered fields */ -static int proto_ns_cert_exts = -1; +static int proto_ns_cert_exts; #include "packet-ns_cert_exts-hf.c" /* Initialize the subtree pointers */ @@ -41,7 +42,7 @@ void proto_register_ns_cert_exts(void) { }; /* List of subtrees */ - static gint *ett[] = { + static int *ett[] = { #include "packet-ns_cert_exts-ettarr.c" }; |