Skip to content

Commit

Permalink
BUG: format string missing value producing arbitrary values (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisKeefe authored Jul 9, 2020
1 parent d58cbbf commit e43a77e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sucpp/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ compute_status partial(const char* biom_filename, const char* tree_filename,
std::vector<double*> dm_stripes_total((table.n_samples + 1) / 2);

if(nthreads > dm_stripes.size()) {
fprintf(stderr, "More threads were requested than stripes. Using %d threads.\n");
fprintf(stderr, "More threads were requested than stripes. Using %d threads.\n", (table.n_samples +1) / 2);
nthreads = dm_stripes.size();
}

Expand Down

0 comments on commit e43a77e

Please sign in to comment.