aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2012-06-26 19:36:08 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2012-06-26 19:36:08 +0000
commitf2e85a5a96727581eedaab59c54a934f0d5fe1e1 (patch)
tree4388b0f58ecd308f00813c0f79303c951f70681e
parentf7d834b5649a0398309f1beb8b857dbc6672abe6 (diff)
Display expert codes in hexadecimal (less painful for my eyes :))
svn path=/trunk/; revision=43497
-rw-r--r--epan/expert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/expert.c b/epan/expert.c
index ac7b33c69f..a158dd5775 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_DEC, VALS(expert_group_vals), 0, "Wireshark expert group", HFILL }
+ { "Group", "expert.group", FT_UINT32, BASE_HEX, VALS(expert_group_vals), 0, "Wireshark expert group", HFILL }
},
{ &hf_expert_severity,
- { "Severity level", "expert.severity", FT_UINT32, BASE_DEC, VALS(expert_severity_vals), 0, "Wireshark expert severity level", HFILL }
+ { "Severity level", "expert.severity", FT_UINT32, BASE_HEX, VALS(expert_severity_vals), 0, "Wireshark expert severity level", HFILL }
}
};
static gint *ett[] = {