summaryrefslogtreecommitdiff
path: root/tools/checkhf.pl
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-07-03 13:17:41 +0100
committerMichael Mann <mmann78@netscape.net>2016-07-03 12:42:03 +0000
commit50614a95baeeee6b5ecc71cfdbdb655ade5bb2d3 (patch)
treeef5a0f80e9fbdf869ca5cf311cd589acaf8b7eba /tools/checkhf.pl
parentff7d0b31d0e13a946e1f041abaf2cd9bb177b73c (diff)
downloadwireshark-50614a95baeeee6b5ecc71cfdbdb655ade5bb2d3.tar.gz
checkhf: Use colon as field separator for better readability
Comma looks like a list when skimming quickly. Change-Id: Ic0ac1bc8746c70724d2279e3d725c5c9449b79d8 Reviewed-on: https://code.wireshark.org/review/16260 Reviewed-by: João Valverde <j@v6e.pt> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'tools/checkhf.pl')
-rwxr-xr-xtools/checkhf.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/checkhf.pl b/tools/checkhf.pl
index 74b7bddf5c..27d51d3c05 100755
--- a/tools/checkhf.pl
+++ b/tools/checkhf.pl
@@ -135,8 +135,8 @@ while (my $filename = $ARGV[0]) {
$unused_ei = diff_hash(\%ei_static_defs, \%ei_usage);
- print_list("Unused href entry: $filename, ", $unused_href);
- print_list("Unused ei entry: $filename, ", $unused_ei);
+ print_list("Unused href entry: $filename: ", $unused_href);
+ print_list("Unused ei entry: $filename: ", $unused_ei);
# 2. Are all the hf_defs and ei_ entries (static and global) in [hf|ei]_array_entries ?
# (Note: if a static hf_def or ei is "unused", don't check for same in [hf|ei]_array_entries)
@@ -150,8 +150,8 @@ while (my $filename = $ARGV[0]) {
$no_array_ei = diff_hash(\%ei_static_defs, \%ei_array_entries);
$no_array_ei = diff_hash($no_array_ei, $unused_ei); # Remove "unused" ei_... from no_array list
- print_list("ERROR: NO ARRAY: $filename, ", $no_array_href);
- print_list("ERROR: NO ARRAY: $filename, ", $no_array_ei);
+ print_list("ERROR: NO ARRAY: $filename: ", $no_array_href);
+ print_list("ERROR: NO ARRAY: $filename: ", $no_array_ei);
if ((keys %{$no_array_href}) != 0) {
$error += 1;