embryo_cc - remove pointless test for null byte and space

space wins. the nul byte test is pointless. not a bug but pointless code

found by PVS studio
This commit is contained in:
Carsten Haitzler 2017-07-29 11:36:33 +09:00
parent 7620d5d957
commit 66f71d2ebc
1 changed files with 1 additions and 1 deletions

View File

@ -941,7 +941,7 @@ command(void)
error(8); /* invalid/non-constant expression */
fline = (int)val;
while (*lptr == ' ' && *lptr != '\0')
while (*lptr == ' ')
lptr++; /* skip whitespace */
if (*lptr == '"')
{