diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/bootgraph.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bootgraph.pl b/scripts/bootgraph.pl index d2c61efc216f..a8635a10fef2 100644 --- a/scripts/bootgraph.pl +++ b/scripts/bootgraph.pl | |||
@@ -109,8 +109,8 @@ my $stylecounter = 0; | |||
109 | my %rows; | 109 | my %rows; |
110 | my $rowscount = 1; | 110 | my $rowscount = 1; |
111 | my @initcalls = sort { $start{$a} <=> $start{$b} } keys(%start); | 111 | my @initcalls = sort { $start{$a} <=> $start{$b} } keys(%start); |
112 | my $key; | 112 | |
113 | foreach $key (@initcalls) { | 113 | foreach my $key (@initcalls) { |
114 | my $duration = $end{$key} - $start{$key}; | 114 | my $duration = $end{$key} - $start{$key}; |
115 | 115 | ||
116 | if ($duration >= $threshold) { | 116 | if ($duration >= $threshold) { |