Skip to content

Commit

Permalink
Correct warning
Browse files Browse the repository at this point in the history
  • Loading branch information
morispi committed Dec 9, 2020
1 parent 88e7655 commit f53d91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reformatPAF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ std::string processLine(std::string line) {

std::string res;
res = v[5] + "\t" + v[6] + "\t" + v[7] + "\t" + v[8] + "\t" + v[4] + "\t" + v[0] + "\t" + v[1] + "\t" + v[2] + "\t" + v[3];
for (int i = 9 ; i < v.size(); i++) {
for (unsigned i = 9 ; i < v.size(); i++) {
res += "\t" + v[i];
}

Expand Down

0 comments on commit f53d91d

Please sign in to comment.