Skip to content

Commit 6f012ae

Browse files
committed
remove space for first set
1 parent d9bea4f commit 6f012ae

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

check/cmpres.awk

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

0 commit comments

Comments
 (0)