We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f012ae commit 74a10d7Copy full SHA for 74a10d7
check/cmpres.awk
@@ -793,24 +793,24 @@ END {
793
{
794
if( printsoltimes && printconfs == 0 )
795
796
- if ( length(sname) <= 58 )
797
- printf("%58s |", sname);
+ if ( length(sname) <= 59 )
+ printf("%59s |", sname);
798
else
799
- printf("*%57s |", substr(sname, length(sname) - 56));
+ printf("*%58s |", substr(sname, length(sname) - 57));
800
}
801
else if( printsoltimes == 0 && printconfs )
802
803
- if ( length(sname) <= 55 )
804
- printf("%55s |", sname);
+ if ( length(sname) <= 56 )
+ printf("%56s |", sname);
805
806
- printf("*%54s |", substr(sname, length(sname) - 53));
+ printf("*%55s |", substr(sname, length(sname) - 54));
807
808
809
810
- if ( length(sname) <= 39 )
811
- printf("%39s |", sname)
+ if ( length(sname) <= 40 )
+ printf("%40s |", sname)
812
813
- printf("*%38s |", substr(sname, length(sname) - 37));
+ printf("*%39s |", substr(sname, length(sname) - 38));
814
815
816
0 commit comments