Fix parentheses-equality clang warning.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2022-02-18 20:11:06 +00:00
parent 6e630d038b
commit 375029a2c3

View file

@ -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;
}