mirror of
https://github.com/opnsense/src.git
synced 2026-03-26 12:43:12 -04:00
Revert part of r275059. Comparing unsigned 8 bit value
against -'0' is always false so the conditional block is optimized away.
This commit is contained in:
parent
409062f166
commit
2dd4dcd2ab
1 changed files with 1 additions and 2 deletions
|
|
@ -394,9 +394,8 @@ parse()
|
|||
char *ep, *p, *q;
|
||||
const char *cp;
|
||||
unsigned int drv;
|
||||
int c, j;
|
||||
int c, i, j;
|
||||
size_t k;
|
||||
uint8_t i;
|
||||
|
||||
while ((c = *arg++)) {
|
||||
if (c == ' ' || c == '\t' || c == '\n')
|
||||
|
|
|
|||
Loading…
Reference in a new issue