From 1d57f204d285874d5e77c424e610663746a21cde Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Fri, 19 Nov 2021 18:13:24 +0000 Subject: [PATCH] fix length calc in spot::formatl --- perl/Spot.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/Spot.pm b/perl/Spot.pm index 515c4626..4a8cac94 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -462,7 +462,7 @@ sub formatl my $d = cldate($_[3]); my $width = ($_[0] ? $_[0] : 80) - 80 + 28; my $comment = $_[4] || ''; - $comment = substr $comment, 0, $width if length $comment > $width; + $comment = substr $comment, 0, $width if length($comment) > $width; $comment .= ' ' x ($width - length($comment)) if $comment < $width; # return sprintf "%8.1f %-11s %s %s %-28.28s%7s>", $_[0], $_[1], $d, $t, ($_[3]||''), "<$_[4]" ; -- 2.34.1