recover.c: 2 * bad if test ?
Brought to you by:
scottheavner
1.
recover.c:803]: (style) Checking if unsigned variable 'bytesread' is less than zero.
Source code is
bytesread = nocache_read_block(sbnr, buffer, rbs);
if (bytesread < 0) {
retval = -1;
break;
}
but
size_t bytesread,
2.
recover.c:852]: (style) Checking if unsigned variable 'bytesread' is less than zero.
Duplicate.