diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
commit | a86c5f7cae7ec9a3398300555a0b644689d946a1 (patch) | |
tree | 39fe4b107c71174fd1e8a8ceb9a4d2aa14116248 /epan/dissectors/packet-stat-notify.c | |
parent | Releasing progress-linux version 4.2.6-1~progress7.99u1. (diff) | |
download | wireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.tar.xz wireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.zip |
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-stat-notify.c')
-rw-r--r-- | epan/dissectors/packet-stat-notify.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-stat-notify.c b/epan/dissectors/packet-stat-notify.c index b17053b8..1698d874 100644 --- a/epan/dissectors/packet-stat-notify.c +++ b/epan/dissectors/packet-stat-notify.c @@ -17,13 +17,13 @@ void proto_register_statnotify(void); void proto_reg_handoff_statnotify(void); -static int proto_statnotify = -1; -static int hf_statnotify_procedure_v1 = -1; -static int hf_statnotify_name = -1; -static int hf_statnotify_state = -1; -static int hf_statnotify_priv = -1; +static int proto_statnotify; +static int hf_statnotify_procedure_v1; +static int hf_statnotify_name; +static int hf_statnotify_state; +static int hf_statnotify_priv; -static gint ett_statnotify = -1; +static int ett_statnotify; static int @@ -80,7 +80,7 @@ proto_register_statnotify(void) NULL, 0, "Client supplied opaque data", HFILL }}, }; - static gint *ett[] = { + static int *ett[] = { &ett_statnotify, }; |