Skip to content

Commit

Permalink
fixed compilation bug for some versions of gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
nloyfer committed Jun 23, 2024
1 parent 2ea6735 commit aeb8f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cview/cview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ void Cview::parse() {
if (proc_line(line2tokens(line))) { break; }
line_i++;
}
if (verbose) fprintf(stderr, "finished %s reads\n", addCommas(line_i));
if (verbose) fprintf(stderr, "finished %s reads\n", addCommas(line_i).c_str());
}
catch (std::exception &e) {
std::cerr << "failed in cview" << std::endl;
Expand Down

0 comments on commit aeb8f1b

Please sign in to comment.