Skip to content

Commit

Permalink
fixed errant tabs
Browse files Browse the repository at this point in the history
whitespace correction used vim retab, put tabs inside some quoted output
  • Loading branch information
seansweda committed Apr 18, 2014
1 parent a7aca9e commit 876b778
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frame.cc
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ frame::frameput()
fprintf( output, "Pit: %-15s ", pit->mound->nout() );
fprintf( output, "IP: %2d.%d BF: %2d ",
pit->mound->out / 3, pit->mound->out % 3, pit->mound->bf );
fprintf( output, "%s: %2d %s: %2d ",
fprintf( output, "%s: %2d %s: %2d ",
ibl[0]->nout(), ibl[0]->score,
ibl[1]->nout(), ibl[1]->score );
fprintf( output, "In: %s %d Outs: %d\n",
Expand Down Expand Up @@ -845,7 +845,7 @@ frame::print_linescore(FILE *fp)
fprintf(fp," ");
for (x = 1; x <= inning; x++)
fprintf(fp,"%3d",x);
fprintf(fp," R H E\n");
fprintf(fp," R H E\n");

for (x = 1; x <= y; x++)
fprintf(fp,"-");
Expand Down
2 changes: 1 addition & 1 deletion team.cc
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ team::box_score( FILE *fp )

ab=h=r=rbi=b2=b3=hr=bb=k=sb=cs=pal=par=out=er=bf=0;

fprintf(fp,"\nPITCHERS %-19s IP H R ER BB K HR BF\n", ibl);
fprintf(fp,"\nPITCHERS %-19s IP H R ER BB K HR BF\n", ibl);
newpit=pitchers;
while (newpit) {
out=out+newpit->head->out;
Expand Down

0 comments on commit 876b778

Please sign in to comment.