aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248_annex_e.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-12-13 18:56:01 +0000
committerGuy Harris <guy@alum.mit.edu>2011-12-13 18:56:01 +0000
commit9924dd3acf5dd983c86ad174e4fff157c61f6479 (patch)
treec3903384c7469678e200a4230bb233a660288554 /epan/dissectors/packet-h248_annex_e.c
parent031da40d7973373f066446aea656a0c110aa5ada (diff)
The last element of an h248_pkg_param_t should be a pointer.
svn path=/trunk/; revision=40180
Diffstat (limited to 'epan/dissectors/packet-h248_annex_e.c')
-rw-r--r--epan/dissectors/packet-h248_annex_e.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-h248_annex_e.c b/epan/dissectors/packet-h248_annex_e.c
index 890b67b3b8..372993cfad 100644
--- a/epan/dissectors/packet-h248_annex_e.c
+++ b/epan/dissectors/packet-h248_annex_e.c
@@ -78,8 +78,8 @@ static const value_string h248_pkg_generic_cause_gencause_vals[] = {
};
static h248_pkg_param_t h248_pkg_generic_cause_evt_params[] = {
- { 0x0001, &hf_h248_pkg_generic_cause_gencause, h248_param_ber_integer, h248_e_implicit },
- { 0x0002, &hf_h248_pkg_generic_cause_failurecause, h248_param_ber_octetstring, h248_e_implicit },
+ { 0x0001, &hf_h248_pkg_generic_cause_gencause, h248_param_ber_integer, &h248_e_implicit },
+ { 0x0002, &hf_h248_pkg_generic_cause_failurecause, h248_param_ber_octetstring, &h248_e_implicit },
{ 0, NULL, NULL, NULL}
};
@@ -101,10 +101,10 @@ static const value_string h248_pkg_generic_sc_vals[] = {
};
static h248_pkg_param_t h248_pkg_generic_sc_evt_params[] = {
- { 0x0001, &hf_h248_pkg_generic_sc_sig_id, h248_param_PkgdName, h248_e_implicit },
- { 0x0002, &hf_h248_pkg_generic_sc_meth, h248_param_ber_integer, h248_e_implicit },
- { 0x0003, &hf_h248_pkg_generic_sc_slid, h248_param_ber_integer, h248_e_implicit },
- { 0x0004, &hf_h248_pkg_generic_sc_rid, h248_param_ber_integer, h248_e_implicit },
+ { 0x0001, &hf_h248_pkg_generic_sc_sig_id, h248_param_PkgdName, &h248_e_implicit },
+ { 0x0002, &hf_h248_pkg_generic_sc_meth, h248_param_ber_integer, &h248_e_implicit },
+ { 0x0003, &hf_h248_pkg_generic_sc_slid, h248_param_ber_integer, &h248_e_implicit },
+ { 0x0004, &hf_h248_pkg_generic_sc_rid, h248_param_ber_integer, &h248_e_implicit },
{ 0, NULL, NULL, NULL}
};
@@ -414,8 +414,8 @@ static const value_string h248_pkg_tdmc_props_vals[] = {
static h248_pkg_param_t h248_pkg_tdmc_props[] = {
- { 0x0008, &hf_h248_pkg_tdmc_ec, h248_param_ber_boolean, h248_e_implicit },
- { 0x000a, &hf_h248_pkg_tdmc_gain, h248_param_ber_integer, h248_e_implicit },
+ { 0x0008, &hf_h248_pkg_tdmc_ec, h248_param_ber_boolean, &h248_e_implicit },
+ { 0x000a, &hf_h248_pkg_tdmc_gain, h248_param_ber_integer, &h248_e_implicit },
{ 0, NULL, NULL, NULL}
};