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-stat-notify.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-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, }; |