aboutsummaryrefslogtreecommitdiffstats
path: root/epan/expert.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-06-20 17:25:53 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-06-20 17:25:53 +0000
commit3fa645481f82e32d5ad01ebce9c482c4edae31ae (patch)
tree73b81e0aa1cd4264c93fb53f5364ab90308640d3 /epan/expert.c
parenta2f2c490747cdf36ad9dfb6cc73237a8ed569a21 (diff)
Followup to r43176, r43177, r43178, and r43179: prohibit FT_*INT*
with BASE_NONE (or other future display values). Don't use BASE_NONE with FT_UINT32s in the expert info fields. svn path=/trunk/; revision=43412
Diffstat (limited to 'epan/expert.c')
-rw-r--r--epan/expert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/expert.c b/epan/expert.c
index 67442e567a..ac7b33c69f 100644
--- a/epan/expert.c
+++ b/epan/expert.c
@@ -82,10 +82,10 @@ expert_init(void)
{ "Message", "expert.message", FT_STRING, BASE_NONE, NULL, 0, "Wireshark expert information", HFILL }
},
{ &hf_expert_group,
- { "Group", "expert.group", FT_UINT32, BASE_NONE, VALS(expert_group_vals), 0, "Wireshark expert group", HFILL }
+ { "Group", "expert.group", FT_UINT32, BASE_DEC, VALS(expert_group_vals), 0, "Wireshark expert group", HFILL }
},
{ &hf_expert_severity,
- { "Severity level", "expert.severity", FT_UINT32, BASE_NONE, VALS(expert_severity_vals), 0, "Wireshark expert severity level", HFILL }
+ { "Severity level", "expert.severity", FT_UINT32, BASE_DEC, VALS(expert_severity_vals), 0, "Wireshark expert severity level", HFILL }
}
};
static gint *ett[] = {