Fixed typo in GetCommandLineA().

svn path=/trunk/; revision=565
This commit is contained in:
Eric Kohl 1999-06-26 14:28:42 +00:00
parent 19a76ae9af
commit 8ae06e50f1

View file

@ -34,7 +34,7 @@ LPSTR STDCALL GetCommandLineA(VOID)
{
CommandLineA[i] = (CHAR)CommandLineW[i];
}
CommandLineW[i] = 0;
CommandLineA[i] = 0;
return(CommandLineA);
}