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-h261.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-h261.c')
-rw-r--r-- | epan/dissectors/packet-h261.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/epan/dissectors/packet-h261.c b/epan/dissectors/packet-h261.c index cfd1f410..fb183794 100644 --- a/epan/dissectors/packet-h261.c +++ b/epan/dissectors/packet-h261.c @@ -31,20 +31,20 @@ void proto_reg_handoff_h261(void); static dissector_handle_t h261_handle; /* H.261 header fields */ -static int proto_h261 = -1; -static int hf_h261_sbit = -1; -static int hf_h261_ebit = -1; -static int hf_h261_ibit = -1; -static int hf_h261_vbit = -1; -static int hf_h261_gobn = -1; -static int hf_h261_mbap = -1; -static int hf_h261_quant = -1; -static int hf_h261_hmvd = -1; /* Mislabeled in a figure in section C.3.1 as HMDV */ -static int hf_h261_vmvd = -1; -static int hf_h261_data = -1; +static int proto_h261; +static int hf_h261_sbit; +static int hf_h261_ebit; +static int hf_h261_ibit; +static int hf_h261_vbit; +static int hf_h261_gobn; +static int hf_h261_mbap; +static int hf_h261_quant; +static int hf_h261_hmvd; /* Mislabeled in a figure in section C.3.1 as HMDV */ +static int hf_h261_vmvd; +static int hf_h261_data; /* H.261 fields defining a sub tree */ -static gint ett_h261 = -1; +static int ett_h261; static int dissect_h261( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_ ) @@ -224,7 +224,7 @@ proto_register_h261(void) }, }; - static gint *ett[] = + static int *ett[] = { &ett_h261, }; |