Skip to content

Commit bf8bc5d

Browse files
Merge pull request #172 from hyanwong/trivial-printing-correction
Update ancestor_matcher.c
2 parents 25cb583 + b57a853 commit bf8bc5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ancestor_matcher.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ ancestor_matcher_print_state(ancestor_matcher_t *self, FILE *out)
7575
/* Check the properties of the likelihood map */
7676
for (j = 0; j < self->num_likelihood_nodes; j++) {
7777
u = self->likelihood_nodes[j];
78-
printf("%d -> %d\n", u, self->likelihood[u]);
78+
fprintf(out, "%d -> %d\n", u, self->likelihood[u]);
7979
}
8080
fprintf(out, "traceback\n");
8181
for (j = 0; j < (int) self->num_sites; j++) {

0 commit comments

Comments
 (0)