Fix some format errors. (PR #1042)

This commit is contained in:
Andrea
2022-02-26 17:15:09 +00:00
committed by GitHub
parent 5a5d0e2df4
commit 9ad6b11cf9
5 changed files with 19 additions and 13 deletions
+1 -1
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;
}