diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:33 +0000 |
commit | 9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9 (patch) | |
tree | 2784370cda9bbf2da9114d70f05399c0b229d28c /epan/dissectors/packet-nettl.c | |
parent | Adding debian version 4.2.6-1. (diff) | |
download | wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.tar.xz wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.zip |
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-nettl.c')
-rw-r--r-- | epan/dissectors/packet-nettl.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-nettl.c b/epan/dissectors/packet-nettl.c index fd912395..4b22165b 100644 --- a/epan/dissectors/packet-nettl.c +++ b/epan/dissectors/packet-nettl.c @@ -24,13 +24,13 @@ void proto_reg_handoff_nettl(void); /* Initialize the protocol and registered fields */ -static int proto_nettl = -1; +static int proto_nettl; -static int hf_nettl_subsys = -1; -static int hf_nettl_devid = -1; -static int hf_nettl_kind = -1; -static int hf_nettl_pid = -1; -static int hf_nettl_uid = -1; +static int hf_nettl_subsys; +static int hf_nettl_devid; +static int hf_nettl_kind; +static int hf_nettl_pid; +static int hf_nettl_uid; static dissector_handle_t nettl_handle; static dissector_handle_t eth_withoutfcs_handle; @@ -47,7 +47,7 @@ static dissector_table_t tcp_subdissector_table; /* Initialize the subtree pointers */ -static gint ett_nettl = -1; +static int ett_nettl; /* General declarations and macros */ @@ -304,7 +304,7 @@ proto_register_nettl(void) /* Setup protocol subtree array */ - static gint *ett[] = { + static int *ett[] = { &ett_nettl }; |