Skip to content

Commit b39a239

Browse files
committed
.
1 parent d8c3e78 commit b39a239

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

genodsp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ int main
844844
chromSpec = chromsSorted[chromIx];
845845

846846
if (trackOperations)
847-
tracking_report ("allocate(%s / %s bytes)",
847+
tracking_report ("allocate(%s / %s bytes)\n",
848848
chromSpec->chrom, ucommatize(chromSpec->length));
849849

850850
chromSpec->valVector = (valtype*) calloc (chromSpec->length, sizeof(valtype));
@@ -906,7 +906,7 @@ int main
906906
op = stopOp;
907907

908908
if (trackOperations)
909-
tracking_report ("%s(*)", op->name);
909+
tracking_report ("%s(*)\n", op->name);
910910
(*op->funcApply) (op, "*", maxLength, NULL);
911911
firstOp = stopOp->next;
912912
}
@@ -1238,7 +1238,7 @@ void read_intervals
12381238

12391239
if ((trackOperations) && (!chromSpec->flag))
12401240
{
1241-
tracking_report ("input(%s)", chrom);
1241+
tracking_report ("input(%s)\n", chrom);
12421242
chromSpec->flag = true;
12431243
}
12441244

@@ -1542,7 +1542,7 @@ void report_intervals
15421542
v = chromSpec->valVector;
15431543

15441544
if (trackOperations)
1545-
tracking_report ("output(%s)", chromSpec->chrom);
1545+
tracking_report ("output(%s)\n", chromSpec->chrom);
15461546

15471547
active = (showUncovered != uncovered_hide);
15481548

0 commit comments

Comments
 (0)