Fix unsigned comparison

This commit is contained in:
Lorenz Meier 2014-10-11 00:28:14 +02:00
parent b925c5270e
commit 73e9137865
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ SF0X::collect()
float si_units;
bool valid = false;
for (unsigned i = 0; i < ret; i++) {
for (int i = 0; i < ret; i++) {
if (OK == sf0x_parser(readbuf[i], _linebuf, &_linebuf_index, &_parse_state, &si_units)) {
valid = true;
}