Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromekelleher committed Jul 27, 2022
1 parent 8487f73 commit 039a3b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/tskit/trees.c
Original file line number Diff line number Diff line change
Expand Up @@ -3046,8 +3046,8 @@ tsk_treeseq_genetic_relatedness_weighted(const tsk_treeseq_t *self,
args.total_weights = total_weights;
args.index_tuples = index_tuples;
ret = tsk_treeseq_general_stat(self, num_weights + 1, new_weights, num_index_tuples,
genetic_relatedness_weighted_summary_func, &args, num_windows, windows, result,
options);
genetic_relatedness_weighted_summary_func, &args, num_windows, windows, options,
result);
if (ret != 0) {
goto out;

Check warning on line 3052 in c/tskit/trees.c

View check run for this annotation

Codecov / codecov/patch

c/tskit/trees.c#L3052

Added line #L3052 was not covered by tests
}
Expand Down

0 comments on commit 039a3b8

Please sign in to comment.