aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkhf.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/checkhf.pl b/tools/checkhf.pl
index 4c7c1e50fa..ef2767221e 100755
--- a/tools/checkhf.pl
+++ b/tools/checkhf.pl
@@ -561,6 +561,7 @@ sub debug_print_hash {
##print "==> $title\n";
for my $k (sort keys %{$href}) {
- printf "%-40.40s %5.5s %s\n", $title, $href->{$k} // "undef", $k;
+ my $h = defined($href->{$k}) ? $href->{$k} : "undef";
+ printf "%-40.40s %5.5s %s\n", $title, $h, $k;
}
}