1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-23 11:18:54 +00: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:
Roman Divacky 2014-11-27 18:43:44 +00:00
parent 409062f166
commit 2dd4dcd2ab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=275191

View File

@ -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')