diff --git a/source/CmdLine.cpp b/source/CmdLine.cpp index d39a8bae..9c650968 100644 --- a/source/CmdLine.cpp +++ b/source/CmdLine.cpp @@ -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; }