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 d9bea4f commit 6f012aeCopy full SHA for 6f012ae
check/cmpres.awk
@@ -794,23 +794,23 @@ END {
794
if( printsoltimes && printconfs == 0 )
795
{
796
if ( length(sname) <= 58 )
797
- printf(" %58s |", sname);
+ printf("%58s |", sname);
798
else
799
- printf(" *%57s |", substr(sname, length(sname) - 56));
+ printf("*%57s |", substr(sname, length(sname) - 56));
800
}
801
else if( printsoltimes == 0 && printconfs )
802
803
if ( length(sname) <= 55 )
804
- printf(" %55s |", sname);
+ printf("%55s |", sname);
805
806
- printf(" *%54s |", substr(sname, length(sname) - 53));
+ printf("*%54s |", substr(sname, length(sname) - 53));
807
808
809
810
if ( length(sname) <= 39 )
811
- printf(" %39s |", sname)
+ printf("%39s |", sname)
812
813
- printf(" *%38s |", substr(sname, length(sname) - 37));
+ printf("*%38s |", substr(sname, length(sname) - 37));
814
815
816
0 commit comments