Fix parentheses-equality clang warning.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
parent
6e630d038b
commit
375029a2c3
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ static LPSTR GetNextArg(LPSTR lpCmdLine)
|
|||
{
|
||||
*lpCmdLine++ = 0x00;
|
||||
|
||||
while ((*lpCmdLine == ' ')) // Skip multiple spaces between args
|
||||
while (*lpCmdLine == ' ') // Skip multiple spaces between args
|
||||
lpCmdLine++;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue