aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-qsig.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-06-03 23:45:10 -0400
committerAnders Broman <a.broman58@gmail.com>2016-06-05 06:11:12 +0000
commit6a847b7e015bc2f97e5a8ef5735f02c1981c7dc7 (patch)
tree80390b296fb8a0e96c6a4cec19a56557b0307d7f /epan/dissectors/packet-qsig.c
parent7d7190695ce2ff269fdffb04e87139995cde21f4 (diff)
Fix expert_info errors found by new and improved checkhfs.pl.
Change-Id: I30f1b92ee438361c3bd58743f7d1ae8d5ffc96f0 Reviewed-on: https://code.wireshark.org/review/15718 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-qsig.c')
-rw-r--r--epan/dissectors/packet-qsig.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-qsig.c b/epan/dissectors/packet-qsig.c
index 33b2e884e1..14165b1092 100644
--- a/epan/dissectors/packet-qsig.c
+++ b/epan/dissectors/packet-qsig.c
@@ -2040,7 +2040,7 @@ static gint ett_qsig_mid_SEQUENCE_OF_Extension = -1;
#line 310 "./asn1/qsig/packet-qsig-template.c"
static gint ett_cnq_PSS1InformationElement = -1;
-static expert_field ei_qsig_unsupported_arg_type = EI_INIT;
+/* static expert_field ei_qsig_unsupported_arg_type = EI_INIT; */
static expert_field ei_qsig_unsupported_result_type = EI_INIT;
static expert_field ei_qsig_unsupported_error_type = EI_INIT;
@@ -16363,7 +16363,9 @@ void proto_register_qsig(void) {
};
static ei_register_info ei[] = {
+#if 0
{ &ei_qsig_unsupported_arg_type, { "qsig.unsupported.arg_type", PI_UNDECODED, PI_WARN, "UNSUPPORTED ARGUMENT TYPE (QSIG)", EXPFILL }},
+#endif
{ &ei_qsig_unsupported_result_type, { "qsig.unsupported.result_type", PI_UNDECODED, PI_WARN, "UNSUPPORTED RESULT TYPE (QSIG)", EXPFILL }},
{ &ei_qsig_unsupported_error_type, { "qsig.unsupported.error_type", PI_UNDECODED, PI_WARN, "UNSUPPORTED ERROR TYPE (QSIG)", EXPFILL }},
};