Skip to content

Commit

Permalink
Don't emit blank lines in the -coverage report. Fixes 563d049.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Oct 27, 2020
1 parent fcd7f96 commit 604f7fc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/stores/ovStoreDump.C
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,8 @@ dumpParameters::drawPicture(uint32 Aid,
overlaps[o].erate() * 100.0,
line);
}

fprintf(stdout, "\n");
}


Expand Down Expand Up @@ -1266,9 +1268,6 @@ main(int argc, char **argv) {

if (dumptype == dtCoverage)
params.reportSimpleStatistics(rr, ovl, ovlSav, printCovHeader);

if (rr < endID)
fprintf(stdout, "\n");
}
}

Expand Down

0 comments on commit 604f7fc

Please sign in to comment.