Skip to content

Commit f53d91d

Browse files
committed
Correct warning
1 parent 88e7655 commit f53d91d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reformatPAF.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ std::string processLine(std::string line) {
2525

2626
std::string res;
2727
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];
28-
for (int i = 9 ; i < v.size(); i++) {
28+
for (unsigned i = 9 ; i < v.size(); i++) {
2929
res += "\t" + v[i];
3030
}
3131

0 commit comments

Comments
 (0)