Skip to content

Commit 74a10d7

Browse files
committed
correct width
1 parent 6f012ae commit 74a10d7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

check/cmpres.awk

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -793,24 +793,24 @@ END {
793793
{
794794
if( printsoltimes && printconfs == 0 )
795795
{
796-
if ( length(sname) <= 58 )
797-
printf("%58s |", sname);
796+
if ( length(sname) <= 59 )
797+
printf("%59s |", sname);
798798
else
799-
printf("*%57s |", substr(sname, length(sname) - 56));
799+
printf("*%58s |", substr(sname, length(sname) - 57));
800800
}
801801
else if( printsoltimes == 0 && printconfs )
802802
{
803-
if ( length(sname) <= 55 )
804-
printf("%55s |", sname);
803+
if ( length(sname) <= 56 )
804+
printf("%56s |", sname);
805805
else
806-
printf("*%54s |", substr(sname, length(sname) - 53));
806+
printf("*%55s |", substr(sname, length(sname) - 54));
807807
}
808808
else
809809
{
810-
if ( length(sname) <= 39 )
811-
printf("%39s |", sname)
810+
if ( length(sname) <= 40 )
811+
printf("%40s |", sname)
812812
else
813-
printf("*%38s |", substr(sname, length(sname) - 37));
813+
printf("*%39s |", substr(sname, length(sname) - 38));
814814
}
815815
}
816816
else

0 commit comments

Comments
 (0)